예제 #1
0
 public static DiscordEmbed GenerateOutboundEmbed(string message, DiscordUser responder) =>
 new DiscordEmbedBuilder()
 .WithTitle("Ticket response:")
 .WithAuthor(responder.Username, responder.GetUrl(), responder.AvatarUrl)
 .WithDescription(message)
 .WithFooter("Ticket history is saved for security purposes")
 .WithColor(DiscordColor.Goldenrod)
 .Build();