jellyfin/MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs

19 lines
394 B
C#
Raw Normal View History

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