using System.Text.Json.Serialization; namespace Geekbot.Core.Interactions.Embed { /// public record EmbedFooter { /// /// footer text /// [JsonPropertyName("text")] public string Text { get; set; } /// /// url of footer icon (only supports http(s) and attachments) /// [JsonPropertyName("icon_url")] public string IconUrl { get; set; } /// /// a proxied url of footer icon /// [JsonPropertyName("proxy_icon_url")] public string ProxyIconUrl { get; set; } } }