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

11 lines
294 B
C#
Raw Normal View History

2023-12-20 20:12:40 +00:00
namespace BotSharp.Plugin.MongoStorage.Models;
public class PromptLogElement
{
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; }
}