1
0
mirror of synced 2024-12-18 09:15:54 +01:00
GC-local-server-rewrite/Domain/Entities/ScoreRank.cs

33 lines
698 B
C#
Raw Normal View History

2023-02-16 08:26:13 +01:00
namespace Domain.Entities;
public class ScoreRank
{
public long CardId { get; set; }
public string PlayerName { get; set; } = string.Empty;
public long Rank { get; set; }
public long TotalScore { get; set; }
public int AvatarId { get; set; }
public long TitleId { get; set; }
public long Fcol1 { get; set; }
public int PrefId { get; set; }
public string Pref { get; set; } = string.Empty;
public int AreaId { get; set; }
public string Area { get; set; } = string.Empty;
public int LastPlayTenpoId { get; set; }
public string TenpoName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
}