2
0

IHasSeries.cs 563 B

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