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