Asset.cs 357 B

12345678910111213141516
  1. using System.Text.Json.Serialization;
  2. namespace PixiEditor.UpdateModule
  3. {
  4. public class Asset
  5. {
  6. [JsonPropertyName("url")]
  7. public string Url { get; set; }
  8. [JsonPropertyName("name")]
  9. public string Name { get; set; }
  10. [JsonPropertyName("content_type")]
  11. public string ContentType { get; set; }
  12. }
  13. }