1
0
mirror of synced 2025-02-06 06:34:29 +01:00
2024-03-09 23:49:47 -05:00

13 lines
312 B
C#

using SharedProject.Entities;
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; }
}
}