Asset.cs 423 B

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