Files
tbd-station-14/Content.Shared/Administration/AnyCommandAttribute.cs
metalgearsloth f110e28021 Fix openahelp and quit command perms (#5763)
Co-authored-by: metalgearsloth <metalgearsloth@gmail.com>
2021-12-12 22:45:49 -07:00

18 lines
410 B
C#

using System;
using JetBrains.Annotations;
using Robust.Shared.Console;
namespace Content.Shared.Administration
{
/// <summary>
/// Specifies that a command can be executed by any player.
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
[BaseTypeRequired(typeof(IConsoleCommand))]
[MeansImplicitUse]
public sealed class AnyCommandAttribute : Attribute
{
}
}