mirror of
https://github.com/BillyCool/MariesWonderland.git
synced 2026-03-30 03:32:20 +02:00
Solution cleanup. Implement stubs for all remaining services. Add API models. Move configuration to appsettings.
This commit is contained in:
26
src/Models/Entities/EntityIUserCharacterBoardStatusUp.cs
Normal file
26
src/Models/Entities/EntityIUserCharacterBoardStatusUp.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user