jellyfin/MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs
2020-08-19 18:02:34 +02:00

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; }
}
}