source:
iknow-api/Data/AppDbContext.cs@
c2e73b6
| Last change on this file since c2e73b6 was 3347c1b, checked in by , 11 months ago | |
|---|---|
|
|
| File size: 353 bytes | |
| Rev | Line | |
|---|---|---|
| [2859225] | 1 | using Microsoft.EntityFrameworkCore; |
| [e49c3ed] | 2 | using iknow_api.Models; |
| [2859225] | 3 | |
| [e49c3ed] | 4 | namespace 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; } |
| [3347c1b] | 12 | public DbSet<RefreshToken> RefreshToken { get; set; } |
| [9a57e89] | 13 | } |
| 14 | } |
Note:
See TracBrowser
for help on using the repository browser.
