|
Last change
on this file since 1d32d5c was e423ff3, checked in by GitHub <noreply@…>, 11 months ago |
|
Merge branch 'Dev' into feature/getUser
|
-
Property mode
set to
100644
|
|
File size:
537 bytes
|
| Line | |
|---|
| 1 | using Microsoft.EntityFrameworkCore;
|
|---|
| 2 | using iknow_api.Models;
|
|---|
| 3 |
|
|---|
| 4 | namespace iknow_api.Data
|
|---|
| 5 | {
|
|---|
| 6 | public class AppDbContext : DbContext
|
|---|
| 7 | {
|
|---|
| 8 | public AppDbContext(DbContextOptions<AppDbContext> options)
|
|---|
| 9 | : base(options) { }
|
|---|
| 10 |
|
|---|
| 11 | public DbSet<User> User { get; set; }
|
|---|
| 12 | public DbSet<ContactInfo> ContactInfo { get; set; }
|
|---|
| 13 | public DbSet<HighSchool> HighSchool { get; set; }
|
|---|
| 14 | public DbSet<EnrollmentInfo> EnrollmentInfo { get; set; }
|
|---|
| 15 | public DbSet<RefreshToken> RefreshToken { get; set; }
|
|---|
| 16 | }
|
|---|
| 17 | } |
|---|
Note:
See
TracBrowser
for help on using the repository browser.