19 lines
345 B
C#
19 lines
345 B
C#
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,
|
|
};
|
|
}
|
|
}
|
|
}
|