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; } } }