mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
10 lines
No EOL
506 B
C#
10 lines
No EOL
506 B
C#
using ApplicationCommandType = Myriad.Types.ApplicationCommand.ApplicationCommandType;
|
|
|
|
namespace PluralKit.Bot;
|
|
|
|
public partial class ApplicationCommandTree
|
|
{
|
|
public static ApplicationCommand ProxiedMessageQuery = new(ApplicationCommandType.Message, "Message info");
|
|
public static ApplicationCommand ProxiedMessageDelete = new(ApplicationCommandType.Message, "Delete message");
|
|
public static ApplicationCommand ProxiedMessagePing = new(ApplicationCommandType.Message, "Ping message author");
|
|
} |