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