aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Providers/EpisodeIdentity.cs
blob: 53f469e955d6b156d4d5780e74e9e8f9e3f2d893 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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; }
    }
}