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