Archived
1
0
Fork 0
This repository has been archived on 2024-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
maki/Maki/DiscordEmbedFooter.cs

20 lines
345 B
C#
Raw Normal View History

2017-05-14 12:02:51 +00:00
using Maki.Structures.Embeds;
namespace Maki
{
public class DiscordEmbedFooter
{
public string Text;
public string Icon;
internal EmbedFooter ToStruct()
{
return new EmbedFooter()
{
Text = Text,
IconUrl = Icon,
};
}
}
}