1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Text.Json.Serialization;
- namespace PixiEditor.UpdateModule
- {
- public class Asset
- {
- [JsonPropertyName("url")]
- public string Url { get; set; }
- [JsonPropertyName("name")]
- public string Name { get; set; }
- [JsonPropertyName("content_type")]
- public string ContentType { get; set; }
- }
- }
|