SeasonPathParserResult.cs 581 B

1234567891011121314151617
  1. namespace Emby.Naming.TV
  2. {
  3. public class SeasonPathParserResult
  4. {
  5. /// <summary>
  6. /// Gets or sets the season number.
  7. /// </summary>
  8. /// <value>The season number.</value>
  9. public int? SeasonNumber { get; set; }
  10. /// <summary>
  11. /// Gets or sets a value indicating whether this <see cref="SeasonPathParserResult"/> is success.
  12. /// </summary>
  13. /// <value><c>true</c> if success; otherwise, <c>false</c>.</value>
  14. public bool Success { get; set; }
  15. public bool IsSeasonFolder { get; set; }
  16. }
  17. }