0
0
RhSolutions-Api/RhSolutions.Api/Models/IdentityContext.cs

9 lines
316 B
C#
Raw Normal View History

2024-02-07 16:32:34 +03:00
using Microsoft.AspNetCore.Identity;
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
namespace RhSolutions.Models;
public class IdentityContext : IdentityDbContext<IdentityUser>
{
public IdentityContext(DbContextOptions<IdentityContext> options) : base(options) { }
}