BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/ConversationDialogDocument.cs
2023-12-13 11:58:25 -06:00

10 lines
258 B
C#

using BotSharp.Plugin.MongoStorage.Models;
namespace BotSharp.Plugin.MongoStorage.Collections;
public class ConversationDialogDocument : MongoBase
{
public string ConversationId { get; set; }
public List<DialogMongoElement> Dialogs { get; set; }
}