#pragma warning disable CS1591
#pragma warning disable SA1600
namespace Emby.Naming.TV
{
public class SeasonPathParserResult
{
///
/// Gets or sets the season number.
///
/// The season number.
public int? SeasonNumber { get; set; }
///
/// Gets or sets a value indicating whether this is success.
///
/// true if success; otherwise, false.
public bool Success { get; set; }
public bool IsSeasonFolder { get; set; }
}
}