jellyfin/MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs

19 lines
394 B
C#
Raw Normal View History

#nullable disable
2020-08-19 18:02:34 +02:00
#pragma warning disable CS1591
using System;
2020-08-19 18:02:34 +02:00
using System.Collections.Generic;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.Entities
{
public interface IHasSpecialFeatures
{
/// <summary>
2021-12-21 00:10:58 +01:00
/// Gets the special feature ids.
2018-12-28 00:27:57 +01:00
/// </summary>
/// <value>The special feature ids.</value>
2021-12-21 00:10:58 +01:00
IReadOnlyList<Guid> SpecialFeatureIds { get; }
2018-12-28 00:27:57 +01:00
}
}