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

29 lines
625 B
C#

using Newtonsoft.Json;
namespace Maki.Structures.Embeds
{
/// <summary>
/// Discord API Embed Field structure
/// </summary>
internal struct EmbedField
{
/// <summary>
/// name of the field
/// </summary>
[JsonProperty("name")]
public string Name;
/// <summary>
/// value of the field
/// </summary>
[JsonProperty("value")]
public string Value;
/// <summary>
/// whether or not this field should display inline
/// </summary>
[JsonProperty("inline")]
public bool Inline;
}
}