reworked Model

This commit is contained in:
t.ruspekhofer 2022-02-22 00:28:48 +01:00
parent 15608f0e31
commit 04049f31f6
12 changed files with 34 additions and 48 deletions

View file

@ -0,0 +1,14 @@
namespace Lieb.Models.GuildWars2
{
public class Equipped
{
public int EquippedId { get; set; }
public bool CanTank { get; set; }
public int GuildWars2AccountId { get; set; }
public int RaidRoleId { get; set; }
public GuildWars2Account GuildWars2Account { get; set; } = new GuildWars2Account();
public GuildWars2Build RaidRole { get; set; } = new GuildWars2Build();
}
}