2014-09-20 15:48:23 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
{
|
|
|
|
|
public interface IHasSpecialFeatures
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the special feature ids.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The special feature ids.</value>
|
2017-08-11 21:55:48 +00:00
|
|
|
|
Guid[] SpecialFeatureIds { get; set; }
|
2014-09-20 15:48:23 +00:00
|
|
|
|
}
|
|
|
|
|
}
|