BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Models/PromptLogMongoElement.cs
2023-12-31 22:56:10 -06:00

11 lines
299 B
C#

namespace BotSharp.Plugin.MongoStorage.Models;
public class PromptLogMongoElement
{
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; }
}