BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/ConversationStateDocument.cs

9 lines
348 B
C#
Raw Normal View History

2024-01-01 04:56:10 +00:00
namespace BotSharp.Plugin.MongoStorage.Collections;
public class ConversationStateDocument : MongoBase
{
public string ConversationId { 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
}