mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 18:42:52 -07:00
11 lines
240 B
C#
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; }
|
|
}
|
|
} |