Aselia.Common.Modules.CommandAttribute.CommandAttribute C# (CSharp) 메소드

CommandAttribute() 공개 메소드

public CommandAttribute ( string commands, Authorizations level, string format = "" ) : System
commands string
level Authorizations
format string
리턴 System
        public CommandAttribute(string commands, Authorizations level, string format = "")
            : base()
        {
            Commands = commands.ToUpper().Split(' ');
            Level = level;
            Format = format;
        }
CommandAttribute