21 lines
No EOL
402 B
C#
21 lines
No EOL
402 B
C#
using ForgeCoreAPI.ACS;
|
|
using LibAC.Arguments;
|
|
|
|
namespace ForgeCoreAPI;
|
|
|
|
public class ICommand
|
|
{
|
|
public AccessToken AccessToken { get; set; }
|
|
public string Command { get; set; }
|
|
public Arguments Arguments { get; set; }
|
|
}
|
|
|
|
public class CommandAttribute : Attribute
|
|
{
|
|
public ICommand Command { get; }
|
|
|
|
public CommandAttribute(ICommand command)
|
|
{
|
|
Command = command;
|
|
}
|
|
} |