Files
DiscordChatExporter/DiscordChatExporter.Core.Models/EmbedFooter.cs
Alexey Golub e5a2852165 Use nullable
2019-11-13 19:19:36 +02:00

19 lines
450 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;
}
}