JOBot/JOBot.Backend/DAL/Context/AppDbContext.cs
2025-05-01 00:33:12 +03:00

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) { }
}