forked from Sarah/Lieb-Website
Added Models
This commit is contained in:
parent
dbf1be4c5d
commit
245c6da6c6
12 changed files with 246 additions and 1 deletions
11
Lieb/Models/User.cs
Normal file
11
Lieb/Models/User.cs
Normal file
|
@ -0,0 +1,11 @@
|
|||
namespace Lieb.Models
|
||||
{
|
||||
public class User
|
||||
{
|
||||
public int UserId { get; set; }
|
||||
public ulong DiscordUserId { get; set; }
|
||||
public string Name { get; set; } = string.Empty;
|
||||
public DateTime Birthday { get; set; }
|
||||
public ICollection<GuildWars2Account> GuildWars2Accounts { get; set; } = new List<GuildWars2Account>();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue