All checks were successful
continuous-integration/drone/push Build is passing
14 lines
274 B
C#
14 lines
274 B
C#
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<string>? hdr_formats {get; set;}
|
|
}
|