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

10 lines
255 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; }
}