IHasSeries.cs 590 B

1234567891011121314151617181920212223242526272829
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. using System;
  4. namespace MediaBrowser.Controller.Entities
  5. {
  6. public interface IHasSeries
  7. {
  8. /// <summary>
  9. /// Gets or sets the name of the series.
  10. /// </summary>
  11. /// <value>The name of the series.</value>
  12. string SeriesName { get; set; }
  13. Guid SeriesId { get; set; }
  14. string SeriesPresentationUniqueKey { get; set; }
  15. string FindSeriesName();
  16. string FindSeriesSortName();
  17. Guid FindSeriesId();
  18. string FindSeriesPresentationUniqueKey();
  19. }
  20. }