SeriesInfo.cs 763 B

1234567891011121314151617181920212223242526272829
  1. namespace Emby.Naming.TV
  2. {
  3. /// <summary>
  4. /// Holder object for Series information.
  5. /// </summary>
  6. public class SeriesInfo
  7. {
  8. /// <summary>
  9. /// Initializes a new instance of the <see cref="SeriesInfo"/> class.
  10. /// </summary>
  11. /// <param name="path">Path to the file.</param>
  12. public SeriesInfo(string path)
  13. {
  14. Path = path;
  15. }
  16. /// <summary>
  17. /// Gets or sets the path.
  18. /// </summary>
  19. /// <value>The path.</value>
  20. public string Path { get; set; }
  21. /// <summary>
  22. /// Gets or sets the name of the series.
  23. /// </summary>
  24. /// <value>The name of the series.</value>
  25. public string? Name { get; set; }
  26. }
  27. }