2019-12-13 12:11:37 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
namespace Emby.Naming.TV
|
|
|
|
{
|
|
|
|
public class EpisodePathParserResult
|
|
|
|
{
|
|
|
|
public int? SeasonNumber { get; set; }
|
2019-05-10 11:37:42 -07:00
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
public int? EpisodeNumber { get; set; }
|
2019-05-10 11:37:42 -07:00
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
public int? EndingEpsiodeNumber { get; set; }
|
2019-05-10 11:37:42 -07:00
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
public string SeriesName { get; set; }
|
2019-05-10 11:37:42 -07:00
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
public bool Success { get; set; }
|
|
|
|
|
|
|
|
public bool IsByDate { get; set; }
|
2019-05-10 11:37:42 -07:00
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
public int? Year { get; set; }
|
2019-05-10 11:37:42 -07:00
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
public int? Month { get; set; }
|
2019-05-10 11:37:42 -07:00
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
public int? Day { get; set; }
|
|
|
|
}
|
|
|
|
}
|