12 lines
220 B
C#
Raw Normal View History

2024-09-20 20:30:10 +02:00
using Unity.Plastic.Newtonsoft.Json;
public class OrganizationCredentials
{
[JsonProperty("user")]
public string User { get; set; }
[JsonProperty("password")]
public string Password { get; set; }
}