27 lines
847 B
C#
27 lines
847 B
C#
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)]
|
|
[BaseTypeRequired(typeof(IConsoleCommand))]
|
|
[MeansImplicitUse]
|
|
public sealed class AdminCommandAttribute : Attribute
|
|
{
|
|
public AdminCommandAttribute(AdminFlags flags)
|
|
{
|
|
Flags = flags;
|
|
}
|
|
|
|
public AdminFlags Flags { get; }
|
|
}
|
|
}
|