2024-03-10 05:49:47 +01:00
|
|
|
|
using SharedProject.Entities;
|
|
|
|
|
|
|
|
|
|
namespace GameDatabase.Entities
|
2022-08-25 09:36:23 +02:00
|
|
|
|
{
|
|
|
|
|
public partial class Card
|
|
|
|
|
{
|
|
|
|
|
public string AccessCode { get; set; } = null!;
|
2024-03-07 11:06:45 +01:00
|
|
|
|
public uint Baid { get; set; }
|
|
|
|
|
|
2023-11-12 00:12:26 +01:00
|
|
|
|
public virtual UserDatum? Ba { get; set; }
|
2022-08-25 09:36:23 +02:00
|
|
|
|
}
|
2022-10-26 18:42:41 +02:00
|
|
|
|
}
|