BotSharp/src/Infrastructure/BotSharp.Core.Realtime/Models/Chat/ChatSessionUpdate.cs

12 lines
179 B
C#
Raw Normal View History

2025-04-28 21:02:10 +00:00
namespace BotSharp.Core.Realtime.Models.Chat;
2025-04-14 06:25:16 +00:00
2025-04-25 14:58:04 +00:00
public class ChatSessionUpdate
2025-04-14 06:25:16 +00:00
{
public string RawResponse { get; set; }
2025-04-25 14:58:04 +00:00
public ChatSessionUpdate()
2025-04-14 06:25:16 +00:00
{
}
}