mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-02 08:09:16 +00:00
19 lines
448 B
C#
19 lines
448 B
C#
namespace DiscordChatExporter.Core.Models
|
|
{
|
|
// https://discordapp.com/developers/docs/resources/channel#embed-object-embed-footer-structure
|
|
|
|
public class EmbedFooter
|
|
{
|
|
public string Text { get; }
|
|
|
|
public string IconUrl { get; }
|
|
|
|
public EmbedFooter(string text, string iconUrl)
|
|
{
|
|
Text = text;
|
|
IconUrl = iconUrl;
|
|
}
|
|
|
|
public override string ToString() => Text;
|
|
}
|
|
} |