BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/ConversationStateDocument.cs

10 lines
388 B
C#
Raw Normal View History

2024-01-01 04:56:10 +00:00
namespace BotSharp.Plugin.MongoStorage.Collections;
public class ConversationStateDocument : MongoBase
{
public string ConversationId { get; set; }
2025-01-29 22:21:19 +00:00
public string AgentId { get; set; }
2024-04-08 14:58:25 +00:00
public List<StateMongoElement> States { get; set; } = new List<StateMongoElement>();
public List<BreakpointMongoElement> Breakpoints { get; set; } = new List<BreakpointMongoElement>();
2024-01-01 04:56:10 +00:00
}