mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* AuthenticationDatabase switched to Entity Framework Core, DB First * Adds AsNoTracking() for performance and implements CreateAccount() instead of AddAccount() * woops * Auth db no longer needs to be init, or inherit from Database * test fix hopefully * Database objects in ACE.Entity would no longer be required * Major WIP * more progress * AuthenticationDatabase switched to Entity Framework Core, DB First * Adds AsNoTracking() for performance and implements CreateAccount() instead of AddAccount() * woops * Auth db no longer needs to be init, or inherit from Database * test fix hopefully * Database objects in ACE.Entity would no longer be required * Major WIP * more progress * include missing CharacterCreateInfo * GetCharacters changes to show how we can use the propertybag for these values * Lot of progress with the WorldObject code * comment add * add biota to CreateWorldObject for loading inv from db
16 lines
436 B
C#
16 lines
436 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ACE.Database.Models.Auth
|
|
{
|
|
public partial class Account
|
|
{
|
|
public uint AccountId { get; set; }
|
|
public string AccountName { get; set; }
|
|
public string PasswordHash { get; set; }
|
|
public string PasswordSalt { get; set; }
|
|
public uint AccessLevel { get; set; }
|
|
|
|
public Accesslevel AccessLevelNavigation { get; set; }
|
|
}
|
|
}
|