IHasSpecialFeatures.cs 394 B

123456789101112131415161718
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. using System;
  4. using System.Collections.Generic;
  5. namespace MediaBrowser.Controller.Entities
  6. {
  7. public interface IHasSpecialFeatures
  8. {
  9. /// <summary>
  10. /// Gets the special feature ids.
  11. /// </summary>
  12. /// <value>The special feature ids.</value>
  13. IReadOnlyList<Guid> SpecialFeatureIds { get; }
  14. }
  15. }