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

11 lines
321 B
C#
Raw Normal View History

2024-01-01 04:56:10 +00:00
using BotSharp.Plugin.MongoStorage.Models;
namespace BotSharp.Plugin.MongoStorage.Collections;
public class ConversationStateDocument : MongoBase
{
public string ConversationId { get; set; }
public List<StateMongoElement> States { get; set; }
2024-03-26 17:10:34 +00:00
public List<BreakpointMongoElement> Breakpoints { get; set; }
2024-01-01 04:56:10 +00:00
}