IHasSeries.cs 525 B

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