14 lines
464 B
C#
14 lines
464 B
C#
using Flawless.Server.Models;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Flawless.Server.Services;
|
|
|
|
public class AppDbContext(DbContextOptions<AppDbContext> options)
|
|
: IdentityDbContext<AppUser, IdentityRole<Guid>, Guid>(options)
|
|
{
|
|
public DbSet<AppUserRefreshKey> RefreshTokens { get; set; }
|
|
|
|
public DbSet<Repository> Repositories { get; set; }
|
|
} |