2023-09-09 21:44:25 +00:00
|
|
|
using BotSharp.Abstraction.Conversations.Models;
|
2023-09-03 22:43:50 +00:00
|
|
|
|
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
|
|
|
|
|
{
|
2023-10-19 22:27:51 +00:00
|
|
|
public string AgentId { get; set; }
|
|
|
|
|
public string UserId { get; set; }
|
2023-08-26 04:41:01 +00:00
|
|
|
public string Title { get; set; }
|
2023-09-09 21:44:25 +00:00
|
|
|
public List<StateKeyValue> States { get; set; }
|
2023-08-26 04:41:01 +00:00
|
|
|
public DateTime CreatedTime { get; set; }
|
|
|
|
|
public DateTime UpdatedTime { get; set; }
|
|
|
|
|
}
|