8 lines
213 B
C#
8 lines
213 B
C#
namespace BotSharp.Plugin.OpenAI.Models.Realtime;
|
|
|
|
public class SessionServerEventResponse : ServerEventResponse
|
|
{
|
|
[JsonPropertyName("session")]
|
|
public RealtimeSessionBody Session { get; set; } = null!;
|
|
}
|