summaryrefslogtreecommitdiff
path: root/RhSolutions.Api/Models/IdentityContext.cs
blob: fbac8c94388392d7d46b98ec76b5dc930326d2be (plain)
1
2
3
4
5
6
7
8
9
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) { }
}