blob: 64c33a3766fefc0ec66f3fe561153bdfa9b29ced (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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; }
}
}
|