mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-11-15 19:13:00 -05:00
12 lines
335 B
C#
12 lines
335 B
C#
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; }
|
|
}
|
|
} |