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