AuthorBuddy/Data/ChatEntity.cs
2026-06-21 07:52:03 +02:00

11 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;
}