12 lines
179 B
C#
12 lines
179 B
C#
namespace BotSharp.Core.Realtime.Models.Chat;
|
|
|
|
public class ChatSessionUpdate
|
|
{
|
|
public string RawResponse { get; set; }
|
|
|
|
public ChatSessionUpdate()
|
|
{
|
|
|
|
}
|
|
}
|