using DrinkRateAPI.DbEntities; using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; namespace DrinkRateAPI.Contexts; public class IdentityDbContext : IdentityDbContext { public IdentityDbContext(DbContextOptions options) : base(options) { } }