hermes-client/Veadotube/VeadoInstanceInfo.cs
2024-12-02 20:51:04 +00:00

14 lines
353 B
C#

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; }
}
}