BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Models/PromptLogMongoElement.cs

11 lines
299 B
C#
Raw Normal View History

2023-12-20 20:12:40 +00:00
namespace BotSharp.Plugin.MongoStorage.Models;
2024-01-01 04:56:10 +00:00
public class PromptLogMongoElement
2023-12-20 20:12:40 +00:00
{
public string MessageId { get; set; }
public string AgentId { get; set; }
public string Prompt { get; set; }
public string? Response { get; set; }
public DateTime CreateDateTime { get; set; }
}