13 lines
422 B
C#
13 lines
422 B
C#
|
|
namespace AuthorBuddy.Web.Data;
|
||
|
|
|
||
|
|
public class QuickMarkdownEntry
|
||
|
|
{
|
||
|
|
public int Id { get; set; }
|
||
|
|
public int UserId { get; set; }
|
||
|
|
public string InputText { get; set; } = string.Empty;
|
||
|
|
public string OutputText { get; set; } = string.Empty;
|
||
|
|
public string SystemPrompt { get; set; } = string.Empty;
|
||
|
|
public double Temperature { get; set; }
|
||
|
|
public DateTime Timestamp { get; set; } = DateTime.UtcNow;
|
||
|
|
}
|