2023-09-01 22:33:36 +00:00
|
|
|
namespace BotSharp.Plugin.MongoStorage.Collections;
|
2023-08-26 04:41:01 +00:00
|
|
|
|
|
|
|
|
public class ConversationCollection : MongoBase
|
|
|
|
|
{
|
|
|
|
|
public string AgentId { get; set; }
|
|
|
|
|
public string UserId { get; set; }
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
public string Dialog { get; set; }
|
|
|
|
|
public string State { get; set; }
|
|
|
|
|
|
|
|
|
|
public DateTime CreatedTime { get; set; }
|
|
|
|
|
public DateTime UpdatedTime { get; set; }
|
|
|
|
|
}
|