jellyfin/Emby.Naming/TV/EpisodePathParserResult.cs

27 lines
551 B
C#
Raw Normal View History

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