BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/ConversationStateDocument.cs
2025-02-25 11:56:37 -06:00

12 lines
450 B
C#

namespace BotSharp.Plugin.MongoStorage.Collections;
public class ConversationStateDocument : MongoBase
{
public string ConversationId { get; set; } = default!;
public string AgentId { get; set; } = default!;
public string UserId { get; set; } = default!;
public DateTime UpdatedTime { get; set; }
public List<StateMongoElement> States { get; set; } = [];
public List<BreakpointMongoElement> Breakpoints { get; set; } = [];
}