BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/ConversationDialogDocument.cs

11 lines
381 B
C#
Raw Normal View History

2023-09-06 04:41:49 +00:00
namespace BotSharp.Plugin.MongoStorage.Collections;
public class ConversationDialogDocument : MongoBase
2023-09-06 04:41:49 +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; }
public List<DialogMongoElement> Dialogs { get; set; } = [];
2023-09-06 04:41:49 +00:00
}