drinkrate/DrinkRateAPI/Contexts/IdentityDbContext.cs
2025-08-09 01:00:49 +02:00

12 lines
No EOL
340 B
C#

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