blob: 0cdc8bce03285daa2090a794fe1f01cc2f910cd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#nullable disable
using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// Interface for items that have special features.
/// </summary>
public interface IHasSpecialFeatures
{
/// <summary>
/// Gets the special feature ids.
/// </summary>
/// <value>The special feature ids.</value>
IReadOnlyList<Guid> SpecialFeatureIds { get; }
}
}
|