using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Entities
{
public interface IHasSpecialFeatures
{
///
/// Gets or sets the special feature ids.
///
/// The special feature ids.
List SpecialFeatureIds { get; set; }
}
}