38 lines
992 B
C#
38 lines
992 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace TwitchChatTTS.Veadotube
|
|
{
|
|
public class VeadoPayloadMessage
|
|
{
|
|
public string Event { get; set; }
|
|
public string Type { get; set; }
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public object Payload { get; set; }
|
|
}
|
|
|
|
public class VeadoEventMessage
|
|
{
|
|
[JsonPropertyName("event")]
|
|
public string Event { get; set; }
|
|
}
|
|
|
|
public class VeadoNodeState {
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
}
|
|
|
|
public class VeadoNodeStateListMessage : VeadoEventMessage {
|
|
public IEnumerable<VeadoNodeState> States { get; set; }
|
|
}
|
|
|
|
public class VeadoNodeStateMessage : VeadoEventMessage {
|
|
public string State { get; set; }
|
|
}
|
|
|
|
public class VeadoNodeThumbMessage {
|
|
public int Width { get; set; }
|
|
public int Height { get; set; }
|
|
public string Png { get; set; }
|
|
}
|
|
} |