All checks were successful
Build and Deploy API / build-and-deploy (push) Successful in 8s
13 lines
269 B
C#
13 lines
269 B
C#
|
|
using agologumApi.Models;
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
|
|
|
public class AppDbContext : IdentityDbContext<User> {
|
|
|
|
public AppDbContext(DbContextOptions<AppDbContext> options) : base(options) {
|
|
|
|
}
|
|
|
|
} |