mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
7 lines
263 B
C#
7 lines
263 B
C#
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Aaru.Server.New.Data;
|
|
|
|
public class ApplicationDbContext
|
|
(DbContextOptions<ApplicationDbContext> options) : IdentityDbContext<ApplicationUser>(options) {} |