jellyfin/MediaBrowser.Controller/Entities/IHasSeries.cs
2016-07-04 16:11:30 -04:00

15 lines
306 B
C#

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; }
string FindSeriesName();
}
}