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

9 lines
202 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; }
2024-04-09 03:38:56 +00:00
public string ContextId { get; set; }
2024-03-08 13:19:13 +00:00
public string MessageId { get; set; }
}