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

8 lines
195 B
C#
Raw Normal View History

2023-09-06 04:41:49 +00:00
namespace BotSharp.Plugin.MongoStorage.Collections;
public class ConversationDialogCollection : MongoBase
{
public Guid ConversationId { get; set; }
public string Dialog { get; set; }
}