add the new files dummyhead
All checks were successful
Build and Deploy API / build-and-deploy (push) Successful in 7s
All checks were successful
Build and Deploy API / build-and-deploy (push) Successful in 7s
This commit is contained in:
13
api/src/Data/AppDbContext.cs
Normal file
13
api/src/Data/AppDbContext.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user