add the new files dummyhead
All checks were successful
Build and Deploy API / build-and-deploy (push) Successful in 7s

This commit is contained in:
2026-03-14 11:36:22 -05:00
parent 0da09d7594
commit 509b8b003c
2 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using agologumApi.Models;
using Microsoft.EntityFrameworkCore;
public class AppDbContext : DbContext {
public AppDbContext(DbContextOptions<AppDbContext> options) : base(options) {
}
public DbSet<User> Users { get; set; }
}