DTOs for index mostly done, doing DB models
This commit is contained in:
17
SVSim.EmulatedEntrypoint/Models/Dtos/AvatarAbility.cs
Normal file
17
SVSim.EmulatedEntrypoint/Models/Dtos/AvatarAbility.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using MessagePack;
|
||||
|
||||
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
|
||||
|
||||
[MessagePackObject]
|
||||
public class AvatarAbility
|
||||
{
|
||||
public int LeaderSkinId { get; set; }
|
||||
public int BattleStartFirstPlayerBp { get; set; }
|
||||
public int BattleStartSecondPlayerBp { get; set; }
|
||||
public int BattleStartMaxLife { get; set; }
|
||||
public string AbilityCost { get; set; }
|
||||
public string Ability { get; set; }
|
||||
public string PassiveAbility { get; set; }
|
||||
public string AbilityDesc { get; set; }
|
||||
public string PassiveAbilityDesc { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user