jellyfin/MediaBrowser.Controller/Entities/IHasSeries.cs

15 lines
306 B
C#
Raw Normal View History

2014-02-08 13:02:35 -07: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 13:11:30 -07:00
string SeriesName { get; set; }
string FindSeriesName();
2014-02-08 13:02:35 -07:00
}
}