mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
using System.Xml.Serialization; |
|
|
|
namespace ErsatzTV.Infrastructure.Plex.Models; |
|
|
|
public class PlexStreamResponse |
|
{ |
|
[XmlAttribute("id")] |
|
public int Id { get; set; } |
|
|
|
[XmlAttribute("index")] |
|
public int Index { get; set; } |
|
|
|
[XmlAttribute("default")] |
|
public bool Default { get; set; } |
|
|
|
[XmlAttribute("forced")] |
|
public bool Forced { get; set; } |
|
|
|
[XmlAttribute("languageCode")] |
|
public string LanguageCode { get; set; } |
|
|
|
[XmlAttribute("streamType")] |
|
public int StreamType { get; set; } |
|
|
|
[XmlAttribute("codec")] |
|
public string Codec { get; set; } |
|
|
|
[XmlAttribute("profile")] |
|
public string Profile { get; set; } |
|
|
|
[XmlAttribute("channels")] |
|
public int Channels { get; set; } |
|
|
|
[XmlAttribute("anamorphic")] |
|
public bool Anamorphic { get; set; } |
|
|
|
[XmlAttribute("pixelAspectRatio")] |
|
public string PixelAspectRatio { get; set; } |
|
|
|
[XmlAttribute("scanType")] |
|
public string ScanType { get; set; } |
|
|
|
[XmlAttribute("displayTitle")] |
|
public string DisplayTitle { get; set; } |
|
|
|
[XmlAttribute("extendedDisplayTitle")] |
|
public string ExtendedDisplayTitle { get; set; } |
|
}
|
|
|