1
0
mirror of synced 2025-01-09 20:01:36 +01:00

11 lines
281 B
C#
Raw Normal View History

namespace GameDatabase.Entities
{
public partial class Credential
{
2024-03-07 19:06:45 +09:00
public uint Baid { get; set; }
public string Password { get; set; } = null!;
public string Salt { get; set; } = null!;
2024-03-07 19:06:45 +09:00
public virtual UserDatum? Ba { get; set; }
}
}