No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

OrganizationCredentials.cs 220B

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. }