2
0

IHasSeries.cs 529 B

1234567891011121314151617181920
  1. 
  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. string FindSeriesName();
  13. string FindSeriesSortName();
  14. Guid SeriesId { get; set; }
  15. Guid FindSeriesId();
  16. string SeriesPresentationUniqueKey { get; set; }
  17. string FindSeriesPresentationUniqueKey();
  18. }
  19. }