BotSharp/src/Plugins/BotSharp.Plugin.Twilio/Models/Stream/StreamEventResponse.cs

13 lines
270 B
C#
Raw Normal View History

2025-02-07 17:18:47 +00:00
using System.Text.Json.Serialization;
namespace BotSharp.Plugin.Twilio.Models.Stream;
public class StreamEventResponse
{
/// <summary>
/// connected, start, media, stop
/// </summary>
[JsonPropertyName("event")]
public string Event { get; set; }
}