jellyfin/Emby.Naming/TV/EpisodePathParserResult.cs

26 lines
521 B
C#
Raw Normal View History

#pragma warning disable CS1591
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
2020-11-01 11:19:22 +01:00
public int? EndingEpisodeNumber { get; set; }
2019-05-10 20:37:42 +02:00
2020-11-01 10:47:31 +01: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; }
}
}