8 lines
197 B
C#
8 lines
197 B
C#
namespace BotSharp.Plugin.MongoStorage.Collections;
|
|
|
|
public class ConversationDialogCollection : MongoBase
|
|
{
|
|
public string ConversationId { get; set; }
|
|
public string Dialog { get; set; }
|
|
}
|