mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
- .gvc should now properly detect multiple activities - Rewrote repeat raw query bitshift to linqtodb query with division (thx kotz)
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; }
|
|
} |