0
0
MyDarling/Models/IdentityContext.cs
2023-03-06 07:41:35 +03:00

13 lines
326 B
C#

using Microsoft.AspNetCore.Identity;
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
namespace MyDarling.Models;
public class IdentityContext : IdentityDbContext<IdentityUser>
{
public IdentityContext(DbContextOptions<IdentityContext> options) : base(options)
{
}
}