23 lines
456 B
C#
23 lines
456 B
C#
|
using Newtonsoft.Json;
|
|||
|
|
|||
|
namespace Maki.Structures.Embeds
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Discord API Embed Provider structure
|
|||
|
/// </summary>
|
|||
|
internal struct EmbedProvider
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// name of provider
|
|||
|
/// </summary>
|
|||
|
[JsonProperty("name")]
|
|||
|
public string Name;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// url of provider
|
|||
|
/// </summary>
|
|||
|
[JsonProperty("url")]
|
|||
|
public string Url;
|
|||
|
}
|
|||
|
}
|