using System; using System.Text.Json.Serialization; namespace CinemaLib.API; public class MediaFormatInfo { public bool hdr {get;set;} public bool dv {get;set;} [JsonPropertyName("3d")] public bool has3d {get;set;} public List? hdr_formats {get; set;} }