Added Veadotube integration

This commit is contained in:
Tom
2024-12-02 20:51:04 +00:00
parent 48dd6858a1
commit b35183249b
8 changed files with 323 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using System.Text.Json.Serialization;
namespace TwitchChatTTS.Veadotube
{
public class VeadoInstanceInfo
{
[JsonPropertyName("time")]
public long Time { get; set; }
[JsonPropertyName("name")]
public string Name { get; set; }
[JsonPropertyName("server")]
public string Server { get; set; }
}
}