23 lines
543 B
C#
23 lines
543 B
C#
// <copyright file="IHasSpecialFeatures.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#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; }
|
|
}
|
|
}
|