Помогите завернуть код в embedmessage
Вообщем данная команда выводит сообщение сколько на счету монет я хочу его завернуть в embed message помогите пожалуйста библиотека discord.net
[Command("balance"), Remarks("Shows how many Miunies you have")]
[Alias("Cash", "Money")]
public async Task CheckMiunies()
{
var builder = new EmbedBuilder()
{
Color = new Color(255, 0, 247),
Description = "Ваш баланс"
};
var account = _globalUserAccounts.GetById(Context.User.Id);
await ReplyAsync(GetMiuniesReport(account.Miunies, Context.User.Mention, builder.Build()));
}
[Command("balance"), Remarks("Shows how many Miunies the mentioned user has")]
[Alias("Cash", "Money")]
public async Task CheckMiuniesOther(IGuildUser target)
{
var builder = new EmbedBuilder()
{
Color = new Color(255, 0, 247),
Description = "Команды которыми вы можете пользоваться"
};
var account = _globalUserAccounts.GetById(target.Id);
await ReplyAsync(GetMiuniesReport(account.Miunies, target.Mention, builder.Build()));
}