IHasSpecialFeatures.cs 388 B

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