AuthorBuddy/Data/ChatEntity.cs

12 lines
372 B
C#
Raw Normal View History

2026-06-21 07:52:03 +02:00
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;
}