BotSharp/src/Infrastructure/BotSharp.Abstraction/Browsing/Models/MessageInfo.cs

9 lines
207 B
C#
Raw Normal View History

2024-03-08 13:19:13 +00:00
namespace BotSharp.Abstraction.Browsing.Models;
public class MessageInfo
{
public string AgentId { get; set; }
public string ConversationId { get; set; }
public string MessageId { get; set; }
}