mirror of
https://github.com/TbT480jcspy/Iris-Rec-2023-Server-Code.git
synced 2026-09-08 14:41:24 -07:00
MOVEMENT
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ir23.Data
|
||||
{
|
||||
public class AppDbContext : DbContext
|
||||
{
|
||||
|
||||
public DbSet<PlatformData> PlatformDatas { get; set; }
|
||||
public DbSet<account> Accounts { get; set; }
|
||||
public DbSet<refreshtable> refreshtables { get; set; }
|
||||
public DbSet<avatar> Avatars { get; set; }
|
||||
public DbSet<playersetting> PlayerSettings { get; set; }
|
||||
public DbSet<reputation> Reputations { get; set; }
|
||||
public DbSet<progression> Progressions { get; set; }
|
||||
|
||||
|
||||
public AppDbContext(DbContextOptions<AppDbContext> options)
|
||||
: base(options)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user