11 lines
270 B
C#
11 lines
270 B
C#
namespace JOBot.Backend.DAL.Context;
|
|
|
|
using JOBot.Backend.DAL.Models;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
class AppDbContext : DbContext
|
|
{
|
|
public DbSet<User> Users { get; set; }
|
|
|
|
public AppDbContext(DbContextOptions<AppDbContext> options) : base(options) { }
|
|
} |