1
0
mirror of synced 2025-02-06 06:34:29 +01:00
2024-03-07 19:06:45 +09:00

11 lines
281 B
C#

namespace GameDatabase.Entities
{
public partial class Credential
{
public uint Baid { get; set; }
public string Password { get; set; } = null!;
public string Salt { get; set; } = null!;
public virtual UserDatum? Ba { get; set; }
}
}