* sync guids/provider ids (#227) * sync guids from plex * cleanup * sync local guids * sync jellyfin and emby guids * add episodes to search index (#228) * sync episode directors and writers * display episode writers and directors * remove missing episodes from search index * show episodes in search results * fix emby and jellyfin episode updates * fix updating plex episodes * don't delete channel logos on startup * add episodes page; fix adding episodes to collection * cleanup * multi-part episode grouping fixes (#229)
44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
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; }
|
|
}
|
|
}
|