From 0c4d13caed53b2702eef41461d0c8a4b25df48f6 Mon Sep 17 00:00:00 2001 From: Sergey Chebotar Date: Mon, 6 Mar 2023 07:41:35 +0300 Subject: Base authorization/authentification --- Models/IdentityContext.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Models/IdentityContext.cs (limited to 'Models/IdentityContext.cs') diff --git a/Models/IdentityContext.cs b/Models/IdentityContext.cs new file mode 100644 index 0000000..888bc7a --- /dev/null +++ b/Models/IdentityContext.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Identity; +using Microsoft.AspNetCore.Identity.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; + +namespace MyDarling.Models; + +public class IdentityContext : IdentityDbContext +{ + public IdentityContext(DbContextOptions options) : base(options) + { + + } +} \ No newline at end of file -- cgit v1.2.3