mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-11-01 11:07:22 -04: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; }
|
|
}
|
|
} |