namespace Emby.Naming.TV { /// /// Holder object for result. /// public class EpisodePathParserResult { /// /// Gets or sets optional season number. /// public int? SeasonNumber { get; set; } /// /// Gets or sets optional episode number. /// public int? EpisodeNumber { get; set; } /// /// Gets or sets optional ending episode number. For multi-episode files 1-13. /// public int? EndingEpisodeNumber { get; set; } /// /// Gets or sets the name of the series. /// /// The name of the series. public string? SeriesName { get; set; } /// /// Gets or sets a value indicating whether parsing was successful. /// public bool Success { get; set; } /// /// Gets or sets a value indicating whether by date expression was used. /// public bool IsByDate { get; set; } /// /// Gets or sets optional year of release. /// public int? Year { get; set; } /// /// Gets or sets optional year of release. /// public int? Month { get; set; } /// /// Gets or sets optional day of release. /// public int? Day { get; set; } } }