BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/ConversationDialogCollection.cs
Jicheng Lu 60d9f47356 1. use string id in mongo collection.
2. add samples
3. refine repo api
2023-10-19 17:27:51 -05:00

8 lines
197 B
C#

namespace BotSharp.Plugin.MongoStorage.Collections;
public class ConversationDialogCollection : MongoBase
{
public string ConversationId { get; set; }
public string Dialog { get; set; }
}