21 lines
410 B
C#
21 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
|
|
};
|
|
}
|
|
}
|
|
}
|