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