Rename models on backend

This commit is contained in:
2023-01-05 19:25:32 +01:00
parent 2784c3ed7e
commit fd179d82ca
7 changed files with 32 additions and 32 deletions

View File

@@ -7,8 +7,8 @@ namespace WebAPI
public class AppDbContext : DbContext
{
public DbSet<User> Users { get; set; }
public DbSet<DataSet> DataSets { get; set; }
public DbSet<DataRow> DataRows { get; set; }
public DbSet<Layer> DataSets { get; set; }
public DbSet<Record> DataRows { get; set; }
public AppDbContext(DbContextOptions<AppDbContext> options) : base(options)
{