aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs
blob: f47d2162f7d68ddcd2eff0e99b701ddbe88f905c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#nullable disable

#pragma warning disable CS1591

using System;
using System.Collections.Generic;

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