2023-09-03 22:43:50 +00:00
|
|
|
using BotSharp.Abstraction.Repositories.Models;
|
|
|
|
|
|
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-09-02 05:10:46 +00:00
|
|
|
public Guid AgentId { get; set; }
|
|
|
|
|
public Guid UserId { get; set; }
|
2023-08-26 04:41:01 +00:00
|
|
|
public string Title { get; set; }
|
2023-09-07 22:04:34 +00:00
|
|
|
public List<KeyValueModel> States { get; set; }
|
2023-08-26 04:41:01 +00:00
|
|
|
public DateTime CreatedTime { get; set; }
|
|
|
|
|
public DateTime UpdatedTime { get; set; }
|
|
|
|
|
}
|