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; }
|
2025-02-11 20:27:53 +00:00
|
|
|
public DateTime UpdatedTime { 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
|
|
|
}
|