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

14 lines
283 B
C#

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