2023-09-06 04:41:49 +00:00
|
|
|
namespace BotSharp.Plugin.MongoStorage.Collections;
|
|
|
|
|
|
2023-12-13 17:58:25 +00:00
|
|
|
public class ConversationDialogDocument : MongoBase
|
2023-09-06 04:41:49 +00:00
|
|
|
{
|
2025-02-13 03:25:32 +00:00
|
|
|
public string ConversationId { get; set; } = default!;
|
|
|
|
|
public string AgentId { get; set; } = default!;
|
2025-02-25 17:56:37 +00:00
|
|
|
public string UserId { get; set; } = default!;
|
2025-02-11 20:27:53 +00:00
|
|
|
public DateTime UpdatedTime { get; set; }
|
2025-02-13 03:25:32 +00:00
|
|
|
public List<DialogMongoElement> Dialogs { get; set; } = [];
|
2023-09-06 04:41:49 +00:00
|
|
|
}
|