using Flawless.Server.Models; using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; namespace Flawless.Server.Services; public class AppDbContext(DbContextOptions options) : IdentityDbContext, Guid>(options) { public DbSet RefreshTokens { get; set; } public DbSet Repositories { get; set; } }