jellyfin/MediaBrowser.Controller/Entities/IHasSeries.cs

30 lines
590 B
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
2018-12-28 00:27:57 +01:00
using System;
namespace MediaBrowser.Controller.Entities
{
public interface IHasSeries
{
/// <summary>
/// Gets or sets the name of the series.
2018-12-28 00:27:57 +01:00
/// </summary>
/// <value>The name of the series.</value>
string SeriesName { get; set; }
2020-06-15 23:43:52 +02:00
Guid SeriesId { get; set; }
string SeriesPresentationUniqueKey { get; set; }
2018-12-28 00:27:57 +01:00
string FindSeriesName();
2018-12-28 00:27:57 +01:00
string FindSeriesSortName();
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
Guid FindSeriesId();
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
string FindSeriesPresentationUniqueKey();
}
}