暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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