using Newtonsoft.Json; namespace SabreTools.Data.Models.Xbox { /// /// Extra attributes relating to package, in catalog.js /// public class Attribute { /// /// "supports4k": /// True if package supports 4K, false otherwise /// [JsonProperty("supports4k", NullValueHandling = NullValueHandling.Ignore)] public bool? Supports4K { get; set; } /// /// "supportsHdr": /// True if package supports HDR, false otherwise /// [JsonProperty("supportsHdr", NullValueHandling = NullValueHandling.Ignore)] public bool? SupportsHDR { get; set; } /// /// "isXboxOneXEnhanced": /// True if package is XboxOne X enhanced, false otherwise /// [JsonProperty("isXboxOneXEnhanced", NullValueHandling = NullValueHandling.Ignore)] public bool? IsXboxOneXEnhanced { get; set; } } }