summaryrefslogtreecommitdiff
path: root/Models/ApplicationDbContext.cs
blob: 6288321cea73d30f8fb3eb917a25383f9f1f64ee (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;

namespace BackendPIA.Models {
    public class ApplicationDbContext : IdentityDbContext {
	    public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) : base(options) {}
    }
}