Files
DiscordChatExporter/DiscordChatExporter.Core.Models/EmbedFooter.cs
2019-04-10 23:45:21 +03:00

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;
}
}