Files
agologum/api/src/Data/AppDbContext.cs
Blitblank 509b8b003c
All checks were successful
Build and Deploy API / build-and-deploy (push) Successful in 7s
add the new files dummyhead
2026-03-14 11:36:22 -05:00

13 lines
241 B
C#

using agologumApi.Models;
using Microsoft.EntityFrameworkCore;
public class AppDbContext : DbContext {
public AppDbContext(DbContextOptions<AppDbContext> options) : base(options) {
}
public DbSet<User> Users { get; set; }
}