using System;
namespace MediaBrowser.Controller.Entities
{
public interface IHasSeries
{
///
/// Gets the name of the series.
///
/// The name of the series.
string SeriesName { get; set; }
string FindSeriesName();
string SeriesSortName { get; set; }
string FindSeriesSortName();
Guid? SeriesId { get; set; }
Guid? FindSeriesId();
}
}