BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/ConversationDialogCollection.cs
2023-11-21 18:16:45 -06:00

10 lines
260 B
C#

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