Changeset d025ba3 for iknow-api/Data


Ignore:
Timestamp:
10/22/25 13:20:23 (11 months ago)
Author:
stefansaveski <stefansaveski19@…>
Branches:
master
Children:
5b42c8d
Parents:
5aa102d (diff), 9a57e89 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

test

Location:
iknow-api/Data
Files:
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • iknow-api/Data/AppDbContext.cs

    r5aa102d rd025ba3  
    11using Microsoft.EntityFrameworkCore;
    2 using iknow_api.Models;
     2using iknow_api.Core.Models;
    33
    4 public class AppDbContext : DbContext
     4namespace iknow_api.Core.Data
    55{
    6     public AppDbContext(DbContextOptions<AppDbContext> options)
    7         : base(options) { }
     6    public class AppDbContext : DbContext
     7    {
     8        public AppDbContext(DbContextOptions<AppDbContext> options)
     9            : base(options) { }
    810
    9     public DbSet<Users> Users { get; set; }
     11        public DbSet<User> User { get; set; }
     12    }
    1013}
Note: See TracChangeset for help on using the changeset viewer.