using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DiscoBot.Auxiliary { public struct CommandInfo { public CommandInfo(string name, string description, string scope) { this.Name = name; this.Scope = scope; this.Description = description; } public string Name { get; } public string Scope { get; } public string Description { get; } } }