19 lines
394 B
C#
19 lines
394 B
C#
#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; }
|
|
}
|
|
}
|