Write (failing) unit tests for comming development

This commit is contained in:
Amelia 2025-05-04 19:33:05 +02:00
parent 35d5848e3c
commit 96d130d0b5
No known key found for this signature in database
GPG key ID: D6D0ECE365407EAA
8 changed files with 317 additions and 2 deletions

View file

@ -49,6 +49,7 @@ public sealed class DataContext : IdentityDbContext<AppUser, AppRole, int,
public DbSet<ReadingList> ReadingList { get; set; } = null!;
public DbSet<ReadingListItem> ReadingListItem { get; set; } = null!;
public DbSet<Person> Person { get; set; } = null!;
public DbSet<PersonAlias> PersonAlias { get; set; } = null!;
public DbSet<Genre> Genre { get; set; } = null!;
public DbSet<Tag> Tag { get; set; } = null!;
public DbSet<SiteTheme> SiteTheme { get; set; } = null!;