2014-02-08 20:02:35 +00:00
|
|
|
|
|
2016-07-05 06:01:31 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
2014-02-08 20:02:35 +00: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 20:11:30 +00:00
|
|
|
|
string SeriesName { get; set; }
|
|
|
|
|
string FindSeriesName();
|
2016-07-10 15:44:53 +00:00
|
|
|
|
string SeriesSortName { get; set; }
|
|
|
|
|
string FindSeriesSortName();
|
2016-07-05 06:01:31 +00:00
|
|
|
|
Guid? SeriesId { get; set; }
|
|
|
|
|
Guid? FindSeriesId();
|
2014-02-08 20:02:35 +00:00
|
|
|
|
}
|
|
|
|
|
}
|