UnityPackageBetaEnrollResponse.cs 363 B

1234567891011121314
  1. using Unity.Plastic.Newtonsoft.Json;
  2. using PlasticGui.WebApi.Responses;
  3. namespace Unity.PlasticSCM.Editor.WebApi
  4. {
  5. public class UnityPackageBetaEnrollResponse
  6. {
  7. [JsonProperty("error")]
  8. public ErrorResponse.ErrorFields Error { get; set; }
  9. [JsonProperty("isBetaEnabled")]
  10. public bool IsBetaEnabled { get; set; }
  11. }
  12. }