jellyfin/MediaBrowser.Controller/Providers/EpisodeIdentity.cs
2015-03-13 15:37:19 -04:00

12 lines
335 B
C#

namespace MediaBrowser.Controller.Providers
{
public class EpisodeIdentity : IItemIdentity
{
public string Type { get; set; }
public string SeriesId { get; set; }
public int? SeasonIndex { get; set; }
public int IndexNumber { get; set; }
public int? IndexNumberEnd { get; set; }
}
}