15 lines
312 B
C#
15 lines
312 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Discord.API
|
|
{
|
|
internal class EmbedField
|
|
{
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
[JsonProperty("value")]
|
|
public string Value { get; set; }
|
|
[JsonProperty("inline")]
|
|
public bool Inline { get; set; }
|
|
}
|
|
}
|