namespace Discord.Commands { public class CommandServiceConfig { /// The default RunMode commands should have, if one is not specified on the Command attribute or builder. public RunMode DefaultRunMode { get; set; } = RunMode.Mixed; /// Should commands be case-sensitive? public bool CaseSensitiveCommands { get; set; } = false; } }