IHasSeries.cs 387 B

1234567891011121314151617
  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. Guid? SeriesId { get; set; }
  14. Guid? FindSeriesId();
  15. }
  16. }