AppVersionUpdatePatchData.cs 561 B

123456789101112131415161718192021222324
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Edgegap
  8. {
  9. //[Obsolete("Use UpdateAppVersionRequest")] // MIRROR CHANGE: commented this out to avoid import warnings
  10. public struct AppVersionUpdatePatchData
  11. {
  12. [JsonProperty("docker_repository")]
  13. public string DockerRegistry;
  14. [JsonProperty("docker_image")]
  15. public string DockerImage;
  16. [JsonProperty("docker_tag")]
  17. public string DockerTag;
  18. }
  19. }