2024-01-01 04:56:10 +00:00
|
|
|
namespace BotSharp.Plugin.MongoStorage.Collections;
|
|
|
|
|
|
|
|
|
|
public class ConversationStateDocument : MongoBase
|
|
|
|
|
{
|
2025-02-13 03:25:32 +00:00
|
|
|
public string ConversationId { get; set; } = default!;
|
|
|
|
|
public string AgentId { get; set; } = default!;
|
2025-02-25 17:56:37 +00:00
|
|
|
public string UserId { get; set; } = default!;
|
2025-02-11 20:27:53 +00:00
|
|
|
public DateTime UpdatedTime { get; set; }
|
2025-02-13 03:25:32 +00:00
|
|
|
public List<StateMongoElement> States { get; set; } = [];
|
|
|
|
|
public List<BreakpointMongoElement> Breakpoints { get; set; } = [];
|
2024-01-01 04:56:10 +00:00
|
|
|
}
|