Files
Discord.Net/src/Discord.Net.Rest/API/Common/EmbedField.cs
NaN 257f246d1d Format the project with 'dotnet format' (#2551)
* Sync and Re-Format

* Fix Title string.

* Fix indentation.
2023-02-13 18:45:59 +01:00

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; }
}
}