#pragma warning disable CS1591
using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Entities
{
    public interface IHasSpecialFeatures
    {
        /// 
        /// Gets or sets the special feature ids.
        /// 
        /// The special feature ids.
        IReadOnlyList SpecialFeatureIds { get; set; }
    }
}