| 12345678910111213141516171819202122232425 |
- using Content.Shared.Administration;
- using JetBrains.Annotations;
- using Robust.Shared.Console;
- namespace Content.Server.Administration
- {
- /// <summary>
- /// Specifies that a command can only be executed by an admin with the specified flags.
- /// </summary>
- /// <remarks>
- /// If this attribute is used multiple times, either attribute's flag sets can be used to get access.
- /// </remarks>
- /// <seealso cref="AnyCommandAttribute"/>
- [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = true)]
- [MeansImplicitUse]
- public sealed class AdminCommandAttribute : Attribute
- {
- public AdminCommandAttribute(AdminFlags flags)
- {
- Flags = flags;
- }
- public AdminFlags Flags { get; }
- }
- }
|