jellyfin/MediaBrowser.Controller/Entities/IHasSeries.cs

23 lines
528 B
C#
Raw Normal View History

2018-12-27 18:27:57 -05:00
using System;
namespace MediaBrowser.Controller.Entities
{
public interface IHasSeries
{
/// <summary>
/// Gets the name of the series.
/// </summary>
/// <value>The name of the series.</value>
string SeriesName { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
string FindSeriesName();
string FindSeriesSortName();
Guid SeriesId { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
Guid FindSeriesId();
string SeriesPresentationUniqueKey { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
string FindSeriesPresentationUniqueKey();
}
}