jellyfin/MediaBrowser.Controller/Providers/SeasonIdentity.cs

11 lines
240 B
C#
Raw Normal View History

2015-03-13 20:37:19 +01:00
namespace MediaBrowser.Controller.Providers
{
public class SeasonIdentity : IItemIdentity
{
public string Type { get; set; }
public string SeriesId { get; set; }
public int SeasonIndex { get; set; }
}
}