123456789101112131415161718 |
- #nullable disable
- #pragma warning disable CS1591
- using System;
- using System.Collections.Generic;
- namespace MediaBrowser.Controller.Entities
- {
- public interface IHasSpecialFeatures
- {
- /// <summary>
- /// Gets the special feature ids.
- /// </summary>
- /// <value>The special feature ids.</value>
- IReadOnlyList<Guid> SpecialFeatureIds { get; }
- }
- }
|