SeasonPathParserResult.cs 853 B

1234567891011121314151617181920212223242526
  1. namespace Emby.Naming.TV
  2. {
  3. /// <summary>
  4. /// Data object to pass result of <see cref="SeasonPathParser"/>.
  5. /// </summary>
  6. public class SeasonPathParserResult
  7. {
  8. /// <summary>
  9. /// Gets or sets the season number.
  10. /// </summary>
  11. /// <value>The season number.</value>
  12. public int? SeasonNumber { get; set; }
  13. /// <summary>
  14. /// Gets or sets a value indicating whether this <see cref="SeasonPathParserResult" /> is success.
  15. /// </summary>
  16. /// <value><c>true</c> if success; otherwise, <c>false</c>.</value>
  17. public bool Success { get; set; }
  18. /// <summary>
  19. /// Gets or sets a value indicating whether "Is season folder".
  20. /// Seems redundant and barely used.
  21. /// </summary>
  22. public bool IsSeasonFolder { get; set; }
  23. }
  24. }