aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs
blob: f4905b7dcffeddf331af03e5c316689b2f57729e (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; }
    }
}