jellyfin/Emby.Naming/TV/EpisodePathParserResult.cs

26 lines
520 B
C#
Raw Normal View History

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