14 lines
353 B
C#
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; }
|
|
}
|
|
} |