DTOs for index mostly done, doing DB models
This commit is contained in:
15
SVSim.EmulatedEntrypoint/Models/Dtos/MyRotationAbility.cs
Normal file
15
SVSim.EmulatedEntrypoint/Models/Dtos/MyRotationAbility.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using MessagePack;
|
||||
|
||||
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
|
||||
|
||||
[MessagePackObject()]
|
||||
public class MyRotationAbility
|
||||
{
|
||||
public int AbilityId { get; set; }
|
||||
public int AddStartPp { get; set; }
|
||||
public int AddStartLife { get; set; }
|
||||
public int IncreaseAddPpTotalAmount { get; set; }
|
||||
public int IncreaseAddPpTotalTurn { get; set; }
|
||||
public string Ability { get; set; } = string.Empty;
|
||||
public string AbilityDesc { get; set; } = String.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user