using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; namespace BackendPIA.Models { public class ApplicationDbContext : IdentityDbContext { public DbSet? Raffles { get; set; } public DbSet? Tickets { get; set; } public ApplicationDbContext(DbContextOptions options) : base(options) {} protected override void OnModelCreating(ModelBuilder builder) { base.OnModelCreating(builder); } } }