Files
nadekobot/src/Nadeko.Bot.Common/SmartText/SmartTextEmbedFooter.cs
2023-03-14 15:48:59 +01:00

12 lines
210 B
C#

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