Proyecto ChatBot Con Gemini
This commit is contained in:
18
ChatbotApi/Data/Models/ConversacionLog.cs
Normal file
18
ChatbotApi/Data/Models/ConversacionLog.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace ChatbotApi.Data.Models
|
||||
{
|
||||
public class ConversacionLog
|
||||
{
|
||||
[Key]
|
||||
public int Id { get; set; }
|
||||
|
||||
[Required]
|
||||
public string UsuarioMensaje { get; set; } = null!;
|
||||
|
||||
[Required]
|
||||
public string BotRespuesta { get; set; } = null!;
|
||||
|
||||
public DateTime Fecha { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user