|
Last change
on this file since aed1148 was 9694de9, 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
|
| Line | |
|---|
| 1 | using Microsoft.EntityFrameworkCore;
|
|---|
| 2 | using iknow_api.Core.Models;
|
|---|
| 3 |
|
|---|
| 4 | namespace iknow_api.Core.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 | }
|
|---|
| 13 | } |
|---|
Note:
See
TracBrowser
for help on using the repository browser.