mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
12 lines
210 B
C#
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; }
|
|
} |