SeasonPathParserResult.cs 616 B

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