using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; using ChatbotApi.Data.Models; namespace ChatbotApi.Data.Models { public class AppContexto : IdentityDbContext { public AppContexto(DbContextOptions options) : base(options) { } public DbSet ConversacionLogs { get; set; } public DbSet ContextoItems { get; set; } public DbSet FuentesDeContexto { get; set; } public DbSet SystemPrompts { get; set; } } }