hermes-client/Veadotube/VeadoInstanceInfo.cs

14 lines
353 B
C#
Raw Normal View History

2024-12-02 15:51:04 -05:00
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; }
}
}