#nullable disable using System; using System.Collections.Generic; namespace MediaBrowser.Controller.Entities { /// /// Interface for items that have special features. /// public interface IHasSpecialFeatures { /// /// Gets the special feature ids. /// /// The special feature ids. IReadOnlyList SpecialFeatureIds { get; } } }