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.

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