5a8e972952
Analyzers are only run in debug build, so setting TreatWarningsAsErrors for release build will catch the compiler warnings until we resolve all analyzer warnings.
27 lines
551 B
C#
27 lines
551 B
C#
#pragma warning disable CS1591
|
|
#pragma warning disable SA1600
|
|
|
|
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; }
|
|
}
|
|
}
|