Added Models
This commit is contained in:
parent
dbf1be4c5d
commit
245c6da6c6
12 changed files with 246 additions and 1 deletions
11
Lieb/Models/GuildWars2Account.cs
Normal file
11
Lieb/Models/GuildWars2Account.cs
Normal file
|
@ -0,0 +1,11 @@
|
|||
namespace Lieb.Models
|
||||
{
|
||||
public class GuildWars2Account
|
||||
{
|
||||
public int GuildWars2AccountId { get; set; }
|
||||
public string ApiKey { get; set; } = string.Empty;
|
||||
public string AccountName { get; set; } = string.Empty;
|
||||
public ICollection<Equipped> EquippedRoles { get; set; } = new List<Equipped>();
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue