14 lines
280 B
C#
14 lines
280 B
C#
using System;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace StreamCinemaLib.API;
|
|
|
|
public class MediaFormatInfo
|
|
{
|
|
public bool hdr {get;set;}
|
|
public bool dv {get;set;}
|
|
[JsonPropertyName("3d")]
|
|
public bool has3d {get;set;}
|
|
public List<string>? hdr_formats {get; set;}
|
|
}
|