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

11 lines
240 B
C#

namespace MediaBrowser.Controller.Providers
{
public class SeasonIdentity : IItemIdentity
{
public string Type { get; set; }
public string SeriesId { get; set; }
public int SeasonIndex { get; set; }
}
}