Files
PL_JusticeBot/Justice/Commands/Notary.cs
Дмитрий Шиманский dde8b38520 updated
2023-11-09 00:24:18 +03:00

27 lines
1.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using Discord.Interactions;
using Discord;
namespace DiscordApp.Justice.Commands
{
public class Notary : InteractionModuleBase<SocketInteractionContext>
{
[SlashCommand("notary-embed", "Отправляет сообщение с кнопками для нотариусов")]
[DefaultMemberPermissions(GuildPermission.Administrator)]
public async Task sendNotaryEmbed()
{
await DeferAsync(true);
var Embed = new EmbedBuilder()
.WithTitle("**Заверка документа**")
.WithDescription("Ниже вы можете нажать на кнопку создания ID для документа и документа заверки")
.WithColor(Color.Blue)
.Build();
var Components = new ComponentBuilder()
.WithButton(new ButtonBuilder() { CustomId = "NewDocumentCertificate", Label = "Заверить документ", Style = ButtonStyle.Primary })
.Build();
await Context.Channel.SendMessageAsync(embed: Embed, components: Components);
await FollowupAsync("OK!");//, ephemeral: true);
}
}
}