using Newtonsoft.Json; namespace SabreTools.Data.Models.Xbox { /// /// List of image files associated with a package in catalog.js /// public class Image { /// /// "size": /// String representing image size /// Known values: "100x100", "208x208", "480x480" /// [JsonProperty("size", NullValueHandling = NullValueHandling.Ignore)] public string? Size { get; set; } /// /// "image": /// File name of image within MSXC/Metadata// /// [JsonProperty("image", NullValueHandling = NullValueHandling.Ignore)] public string? Name { get; set; } } }