20 lines
387 B
C#
20 lines
387 B
C#
using Maki.Structures.Embeds;
|
|
|
|
namespace Maki
|
|
{
|
|
public class DiscordEmbedAuthor
|
|
{
|
|
public string Name;
|
|
public string Url;
|
|
public string Icon;
|
|
|
|
internal EmbedAuthor ToStruct()
|
|
{
|
|
return new EmbedAuthor() {
|
|
Name = Name,
|
|
Url = Url,
|
|
IconUrl = Icon,
|
|
};
|
|
}
|
|
}
|
|
}
|