SeriesPathParserResult.cs 540 B

12345678910111213141516171819
  1. namespace Emby.Naming.TV
  2. {
  3. /// <summary>
  4. /// Holder object for <see cref="SeriesPathParser"/> result.
  5. /// </summary>
  6. public class SeriesPathParserResult
  7. {
  8. /// <summary>
  9. /// Gets or sets the name of the series.
  10. /// </summary>
  11. /// <value>The name of the series.</value>
  12. public string? SeriesName { get; set; }
  13. /// <summary>
  14. /// Gets or sets a value indicating whether parsing was successful.
  15. /// </summary>
  16. public bool Success { get; set; }
  17. }
  18. }