1
0
mirror of synced 2025-01-19 00:04:05 +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; }
}
}