1
0
mirror of synced 2025-02-06 06:34:29 +01:00

13 lines
312 B
C#
Raw Normal View History

2024-03-09 23:49:47 -05:00
using SharedProject.Entities;
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; }
}
}