49 lines
1.1 KiB
C#
49 lines
1.1 KiB
C#
using System.Xml.Serialization;
|
|
|
|
namespace ErsatzTV.Infrastructure.Plex.Models;
|
|
|
|
public class PlexMediaResponse<T>
|
|
{
|
|
[XmlAttribute("id")]
|
|
public int Id { get; set; }
|
|
|
|
[XmlAttribute("duration")]
|
|
public int Duration { get; set; }
|
|
|
|
[XmlAttribute("bitrate")]
|
|
public int Bitrate { get; set; }
|
|
|
|
[XmlAttribute("width")]
|
|
public int Width { get; set; }
|
|
|
|
[XmlAttribute("height")]
|
|
public int Height { get; set; }
|
|
|
|
[XmlAttribute("aspectRatio")]
|
|
public double AspectRatio { get; set; }
|
|
|
|
[XmlAttribute("audioChannels")]
|
|
public int AudioChannels { get; set; }
|
|
|
|
[XmlAttribute("audioCodec")]
|
|
public string AudioCodec { get; set; }
|
|
|
|
[XmlAttribute("videoCodec")]
|
|
public string VideoCodec { get; set; }
|
|
|
|
[XmlAttribute("videoResulution")]
|
|
public string VideoResolution { get; set; }
|
|
|
|
[XmlAttribute("videoProfile")]
|
|
public string VideoProfile { get; set; }
|
|
|
|
[XmlAttribute("container")]
|
|
public string Container { get; set; }
|
|
|
|
[XmlAttribute("videoFrameRate")]
|
|
public string VideoFrameRate { get; set; }
|
|
|
|
[XmlElement("Part")]
|
|
public List<T> Part { get; set; }
|
|
}
|