11 lines
381 B
C#
11 lines
381 B
C#
namespace BotSharp.Plugin.MongoStorage.Collections;
|
|
|
|
public class ConversationDialogDocument : MongoBase
|
|
{
|
|
public string ConversationId { get; set; } = default!;
|
|
public string AgentId { get; set; } = default!;
|
|
public string UserId { get; set; } = default!;
|
|
public DateTime UpdatedTime { get; set; }
|
|
public List<DialogMongoElement> Dialogs { get; set; } = [];
|
|
}
|