IHasSeries.cs 267 B

123456789101112
  1. 
  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; }
  11. }
  12. }