Added Models

This commit is contained in:
t.ruspekhofer 2022-02-15 19:44:45 +01:00
parent dbf1be4c5d
commit 245c6da6c6
12 changed files with 246 additions and 1 deletions

11
Lieb/Models/Equipped.cs Normal file
View file

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