You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System;
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using Microsoft.Extensions.DependencyInjection;
-
- namespace Discord.Commands
- {
- public struct CommandMatch
- {
- public CommandInfo Command { get; }
- public string Alias { get; }
-
- public CommandMatch(CommandInfo command, string alias)
- {
- Command = command;
- Alias = alias;
- }
- }
- }
|