File uploading

This commit is contained in:
2025-04-13 13:50:30 +08:00
parent 31d98199e7
commit d22a15c42d
11 changed files with 918 additions and 3 deletions

View File

@ -22,6 +22,7 @@ public class AppDatabase(
public DbSet<Account.AccountAuthFactor> AccountAuthFactors { get; set; }
public DbSet<Auth.Session> AuthSessions { get; set; }
public DbSet<Auth.Challenge> AuthChallenges { get; set; }
public DbSet<Storage.CloudFile> Files { get; set; }
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{