You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
481 B
17 lines
481 B
6 years ago
|
namespace Emby.Naming.TV
|
||
|
{
|
||
|
public class EpisodePathParserResult
|
||
|
{
|
||
|
public int? SeasonNumber { get; set; }
|
||
|
public int? EpisodeNumber { get; set; }
|
||
|
public int? EndingEpsiodeNumber { get; set; }
|
||
|
public string SeriesName { get; set; }
|
||
|
public bool Success { get; set; }
|
||
|
|
||
|
public bool IsByDate { get; set; }
|
||
|
public int? Year { get; set; }
|
||
|
public int? Month { get; set; }
|
||
|
public int? Day { get; set; }
|
||
|
}
|
||
|
}
|