jellyfin/MediaBrowser.Controller/Entities/IHasSeries.cs

30 lines
590 B
C#
Raw Normal View History

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