BotSharp/src/Infrastructure/BotSharp.Core.Realtime/Models/Chat/ChatSessionUpdate.cs
2025-04-28 16:02:10 -05:00

12 lines
179 B
C#

namespace BotSharp.Core.Realtime.Models.Chat;
public class ChatSessionUpdate
{
public string RawResponse { get; set; }
public ChatSessionUpdate()
{
}
}