Files
nadekobot/src/NadekoBot/Common/SmartText/SmartTextEmbedAuthor.cs
2023-12-26 17:02:02 +00:00

16 lines
323 B
C#

#nullable disable
using Newtonsoft.Json;
using System.Text.Json.Serialization;
namespace NadekoBot;
public class SmartTextEmbedAuthor
{
public string Name { get; set; }
[JsonProperty("icon_url")]
[JsonPropertyName("icon_url")]
public string IconUrl { get; set; }
public string Url { get; set; }
}