Files
Ngino/src/Ngino.Server/Data/ApplicationDbContext.cs
T

14 lines
352 B
C#

using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
using Ngino.Server.Models;
namespace Ngino.Server.Data;
internal sealed class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
: base(options)
{
}
}