12 lines
No EOL
340 B
C#
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)
|
|
{ }
|
|
} |