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

10 lines
258 B
C#
Raw Normal View History

2023-11-22 00:16:45 +00:00
using BotSharp.Plugin.MongoStorage.Models;
2023-09-06 04:41:49 +00:00
namespace BotSharp.Plugin.MongoStorage.Collections;
public class ConversationDialogDocument : MongoBase
2023-09-06 04:41:49 +00:00
{
public string ConversationId { get; set; }
2023-11-22 00:16:45 +00:00
public List<DialogMongoElement> Dialogs { get; set; }
2023-09-06 04:41:49 +00:00
}