source: iknow-api/Data/AppDbContext.cs@ f8af32b

Last change on this file since f8af32b was ff202cf, checked in by GitHub <noreply@…>, 11 months ago

Merge branch 'Dev' into feature/getUser

  • Property mode set to 100644
File size: 537 bytes
RevLine 
[2859225]1using Microsoft.EntityFrameworkCore;
[e49c3ed]2using iknow_api.Models;
[2859225]3
[e49c3ed]4namespace iknow_api.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; }
[cab02ad]12 public DbSet<ContactInfo> ContactInfo { get; set; }
13 public DbSet<HighSchool> HighSchool { get; set; }
14 public DbSet<EnrollmentInfo> EnrollmentInfo { get; set; }
[3347c1b]15 public DbSet<RefreshToken> RefreshToken { get; set; }
[9a57e89]16 }
17}
Note: See TracBrowser for help on using the repository browser.