aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs
blob: 688439e6c5344c9ca7827180f66921f247e57d90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

namespace MediaBrowser.Controller.Entities
{
    public interface IHasSpecialFeatures
    {
        /// <summary>
        /// Gets or sets the special feature ids.
        /// </summary>
        /// <value>The special feature ids.</value>
        Guid[] SpecialFeatureIds { get; set; }
    }
}