source: iknow-api/Data/AppDbContext.cs@ 9538edc

Last change on this file since 9538edc was 9a57e89, checked in by imbrsk <boris696boris@…>, 11 months ago

Refactor user management: update models, repositories, and services; remove obsolete files

  • Property mode set to 100644
File size: 301 bytes
RevLine 
[2859225]1using Microsoft.EntityFrameworkCore;
[9a57e89]2using iknow_api.Core.Models;
[2859225]3
[9a57e89]4namespace iknow_api.Core.Data
[2859225]5{
[9a57e89]6 public class AppDbContext : DbContext
7 {
8 public AppDbContext(DbContextOptions<AppDbContext> options)
9 : base(options) { }
[2859225]10
[9a57e89]11 public DbSet<User> User { get; set; }
12 }
13}
Note: See TracBrowser for help on using the repository browser.