namespace TGS.Server.ChatCommands { /// /// Metadata about the currently running /// sealed class CommandInfo { /// /// If the was invoked by an admin /// public bool IsAdmin { get; set; } /// /// If the was invoked from an admin chat channel /// public bool IsAdminChannel { get; set; } /// /// The name of the invoker /// public string Speaker { get; set; } /// /// A reference to the that runs the that heard the /// public Instance Server { get; set; } } }