using System; using System.Collections.Generic; using System.Text; namespace Jellyfin.Api.Attributes { /// /// Specifies that the marked controller or method is only accessible via the management interface. /// [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)] public class ManagementAttribute : Attribute { } }