source: iknow-api/Data/AppDbContext.cs@ 618be76

Last change on this file since 618be76 was 618be76, checked in by imbrsk <boris696boris@…>, 11 months ago

Implement user management features with database integration

  • Property mode set to 100644
File size: 241 bytes
Line 
1using Microsoft.EntityFrameworkCore;
2using iknow_api.Models;
3
4public class AppDbContext : DbContext
5{
6 public AppDbContext(DbContextOptions<AppDbContext> options)
7 : base(options) { }
8
9 public DbSet<Users> Users { get; set; }
10}
Note: See TracBrowser for help on using the repository browser.