Files

16 lines
573 B
C#
Raw Permalink Normal View History

2025-11-18 14:34:26 -03:00
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
using ChatbotApi.Data.Models;
2025-11-18 14:34:26 -03:00
namespace ChatbotApi.Data.Models
{
public class AppContexto : IdentityDbContext
{
public AppContexto(DbContextOptions<AppContexto> options) : base(options) { }
public DbSet<ConversacionLog> ConversacionLogs { get; set; }
public DbSet<ContextoItem> ContextoItems { get; set; }
public DbSet<FuenteContexto> FuentesDeContexto { get; set; }
public DbSet<SystemPrompt> SystemPrompts { get; set; }
2025-11-18 14:34:26 -03:00
}
}