ManagementAttribute.cs 379 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Jellyfin.Api.Attributes
  5. {
  6. /// <summary>
  7. /// Specifies that the marked controller or method is only accessible via the management interface.
  8. /// </summary>
  9. [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)]
  10. public class ManagementAttribute : Attribute
  11. {
  12. }
  13. }