2
0

IHasSpecialFeatures.cs 350 B

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