BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/ConversationDocument.cs
2024-12-12 11:28:00 +08:00

18 lines
600 B
C#

namespace BotSharp.Plugin.MongoStorage.Collections;
public class ConversationDocument : MongoBase
{
public string AgentId { get; set; }
public string UserId { get; set; }
public string? TaskId { get; set; }
public string Title { get; set; }
public string TitleAlias { get; set; }
public string Channel { get; set; }
public string ChannelId { get; set; }
public string Status { get; set; }
public int DialogCount { get; set; }
public List<string> Tags { get; set; }
public DateTime CreatedTime { get; set; }
public DateTime UpdatedTime { get; set; }
}