1234567891011121314151617181920212223242526 |
- namespace Emby.Naming.TV
- {
- /// <summary>
- /// Data object to pass result of <see cref="SeasonPathParser"/>.
- /// </summary>
- public class SeasonPathParserResult
- {
- /// <summary>
- /// Gets or sets the season number.
- /// </summary>
- /// <value>The season number.</value>
- public int? SeasonNumber { get; set; }
- /// <summary>
- /// Gets or sets a value indicating whether this <see cref="SeasonPathParserResult" /> is success.
- /// </summary>
- /// <value><c>true</c> if success; otherwise, <c>false</c>.</value>
- public bool Success { get; set; }
- /// <summary>
- /// Gets or sets a value indicating whether "Is season folder".
- /// Seems redundant and barely used.
- /// </summary>
- public bool IsSeasonFolder { get; set; }
- }
- }
|