#nullable disable
#pragma warning disable CS1591
using System;
namespace MediaBrowser.Controller.Entities
{
    public interface IHasSeries
    {
        /// 
        /// Gets or sets the name of the series.
        /// 
        /// The name of the series.
        string SeriesName { get; set; }
        Guid SeriesId { get; set; }
        string SeriesPresentationUniqueKey { get; set; }
        string FindSeriesName();
        string FindSeriesSortName();
        Guid FindSeriesId();
        string FindSeriesPresentationUniqueKey();
    }
}