namespace BotSharp.Plugin.MongoStorage.Collections; public class ConversationStateDocument : MongoBase { public string ConversationId { get; set; } public string AgentId { get; set; } public DateTime UpdatedTime { get; set; } public List States { get; set; } = new List(); public List Breakpoints { get; set; } = new List(); }