namespace Emby.Naming.TV { /// /// Data object to pass result of . /// 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; } /// /// Gets or sets a value indicating whether "Is season folder". /// Seems redundant and barely used. /// public bool IsSeasonFolder { get; set; } } }