2023-02-08 21:33:22 +08:00
|
|
|
|
namespace Domain.Entities;
|
|
|
|
|
|
|
|
|
|
public partial class CardMain
|
|
|
|
|
{
|
|
|
|
|
public long CardId { get; set; }
|
|
|
|
|
|
|
|
|
|
public string PlayerName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public long ScoreI1 { get; set; }
|
|
|
|
|
|
|
|
|
|
public long Fcol1 { get; set; }
|
|
|
|
|
|
|
|
|
|
public long Fcol2 { get; set; }
|
|
|
|
|
|
|
|
|
|
public long Fcol3 { get; set; }
|
|
|
|
|
|
|
|
|
|
public string AchieveStatus { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string? Created { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string? Modified { get; set; } = string.Empty;
|
2024-03-29 17:34:59 +08:00
|
|
|
|
|
|
|
|
|
public List<Item>? Items { get; set; }
|
|
|
|
|
public Coin? Coin { get; set; }
|
|
|
|
|
public List<Unlock>? Unlocks { get; set; }
|
2023-02-08 21:33:22 +08:00
|
|
|
|
}
|