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/DiscordEmbedField.cs
2017-05-14 14:02:51 +02:00

22 lines
410 B
C#

using Maki.Structures.Embeds;
namespace Maki
{
public class DiscordEmbedField
{
public string Name;
public string Value;
public bool Inline = false;
internal EmbedField ToStruct()
{
return new EmbedField()
{
Name = Name,
Value = Value,
Inline = Inline
};
}
}
}