blob: 1e6b9b65a3248885890595a6b76eeddbe6e3515f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
namespace MediaBrowser.Controller.Providers
{
public class SeasonIdentity : IItemIdentity
{
public string Type { get; set; }
public string SeriesId { get; set; }
public int SeasonIndex { get; set; }
}
}
|