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

IsCollabProjectMigratedResponse.cs 668B

1234567891011121314151617181920212223
  1. using Unity.Plastic.Newtonsoft.Json;
  2. using PlasticGui.WebApi.Responses;
  3. namespace Unity.PlasticSCM.Editor.WebApi
  4. {
  5. public class IsCollabProjectMigratedResponse
  6. {
  7. [JsonProperty("error")]
  8. public ErrorResponse.ErrorFields Error { get; set; }
  9. [JsonProperty("IsMigrated")]
  10. public bool IsMigrated { get; set; }
  11. [JsonProperty("WebServerUri")]
  12. public string WebServerUri { get; set; }
  13. [JsonProperty("PlasticCloudOrganizationName")]
  14. public string PlasticCloudOrganizationName { get; set; }
  15. [JsonProperty("Credentials")]
  16. public CredentialsResponse Credentials { get; set; }
  17. }
  18. }