2014-02-08 15:02:35 -05:00
|
|
|
|
|
2016-07-05 02:01:31 -04:00
|
|
|
|
using System;
|
|
|
|
|
|
|
2014-02-08 15:02:35 -05:00
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IHasSeries
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the name of the series.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The name of the series.</value>
|
2016-07-04 16:11:30 -04:00
|
|
|
|
string SeriesName { get; set; }
|
|
|
|
|
|
string FindSeriesName();
|
2016-07-10 11:44:53 -04:00
|
|
|
|
string FindSeriesSortName();
|
2016-07-05 02:01:31 -04:00
|
|
|
|
Guid? SeriesId { get; set; }
|
|
|
|
|
|
Guid? FindSeriesId();
|
2016-12-06 03:24:29 -05:00
|
|
|
|
string SeriesPresentationUniqueKey { get; set; }
|
|
|
|
|
|
string FindSeriesPresentationUniqueKey();
|
2014-02-08 15:02:35 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|