jellyfin/MediaBrowser.Controller/Entities/IHasSeries.cs
2016-07-05 02:01:31 -04:00

18 lines
387 B
C#

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; }
string FindSeriesName();
Guid? SeriesId { get; set; }
Guid? FindSeriesId();
}
}