BotSharp/src/Plugins/BotSharp.Plugin.ChatHub/Models/Stream/ChatStreamEventResponse.cs

16 lines
351 B
C#
Raw Normal View History

2025-04-23 23:07:54 +00:00
using System.Text.Json.Serialization;
namespace BotSharp.Plugin.ChatHub.Models.Stream;
internal class ChatStreamEventResponse
{
[JsonPropertyName("event")]
public string Event { get; set; }
}
internal class ChatStreamMediaEventResponse : ChatStreamEventResponse
{
[JsonPropertyName("payload")]
public string Payload { get; set; }
}