Files
nadekobot/src/NadekoBot/Modules/Searches/_common/StreamNotifications/Models/TrovoSocialLink.cs

13 lines
303 B
C#

#nullable disable
using System.Text.Json.Serialization;
namespace NadekoBot.Modules.Searches.Common.StreamNotifications.Providers;
public class TrovoSocialLink
{
[JsonPropertyName("type")]
public string Type { get; set; }
[JsonPropertyName("url")]
public string Url { get; set; }
}