mirror of
https://github.com/BillyCool/MariesWonderland.git
synced 2026-03-28 17:52:23 +01:00
27 lines
563 B
C#
27 lines
563 B
C#
using MariesWonderland.Models.Type;
|
|
|
|
namespace MariesWonderland.Models.Entities;
|
|
|
|
public class EntityIUserCharacterBoardStatusUp
|
|
{
|
|
public long UserId { get; set; }
|
|
|
|
public int CharacterId { get; set; }
|
|
|
|
public StatusCalculationType StatusCalculationType { get; set; }
|
|
|
|
public int Hp { get; set; }
|
|
|
|
public int Attack { get; set; }
|
|
|
|
public int Vitality { get; set; }
|
|
|
|
public int Agility { get; set; }
|
|
|
|
public int CriticalRatio { get; set; }
|
|
|
|
public int CriticalAttack { get; set; }
|
|
|
|
public long LatestVersion { get; set; }
|
|
}
|