17 lines
388 B
C#
17 lines
388 B
C#
#pragma warning disable CS1591
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
{
|
|
public interface IHasSpecialFeatures
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the special feature ids.
|
|
/// </summary>
|
|
/// <value>The special feature ids.</value>
|
|
IReadOnlyList<Guid> SpecialFeatureIds { get; set; }
|
|
}
|
|
}
|