BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/ConversationContentLogDocument.cs
2024-02-29 20:50:39 -06:00

14 lines
442 B
C#

namespace BotSharp.Plugin.MongoStorage.Collections;
public class ConversationContentLogDocument : MongoBase
{
public string ConversationId { get; set; }
public string MessageId { get; set; }
public string? Name { get; set; }
public string? AgentId { get; set; }
public string Role { get; set; }
public string Source { get; set; }
public string Content { get; set; }
public DateTime CreateTime { get; set; }
}