12 lines
372 B
C#
12 lines
372 B
C#
|
|
namespace AuthorBuddy.Web.Data;
|
||
|
|
|
||
|
|
public class ChatEntity
|
||
|
|
{
|
||
|
|
public int Id { get; set; }
|
||
|
|
public int UserId { get; set; }
|
||
|
|
public string UserMessage { get; set; } = string.Empty;
|
||
|
|
public string AssistantResponse { get; set; } = string.Empty;
|
||
|
|
public string Model { get; set; } = string.Empty;
|
||
|
|
public DateTime Timestamp { get; set; } = DateTime.UtcNow;
|
||
|
|
}
|