OrganizationCredentials.cs 220 B

1234567891011
  1. using Unity.Plastic.Newtonsoft.Json;
  2. public class OrganizationCredentials
  3. {
  4. [JsonProperty("user")]
  5. public string User { get; set; }
  6. [JsonProperty("password")]
  7. public string Password { get; set; }
  8. }