mirror of
https://github.com/fergalmoran/api.fergl.ie.git
synced 2025-12-22 09:18:23 +00:00
8 lines
264 B
C#
8 lines
264 B
C#
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Ferglie.Api.Data {
|
|
public class ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
|
|
: IdentityDbContext<ApplicationUser>(options) { }
|
|
}
|