changes LiebContext, renamed User to LiebUser

This commit is contained in:
t.ruspekhofer 2022-02-16 22:30:03 +01:00
parent bde2735096
commit 7b44e41eb2
12 changed files with 31 additions and 20 deletions

14
Lieb/Models/LiebUser.cs Normal file
View file

@ -0,0 +1,14 @@
using Microsoft.AspNetCore.Identity;
namespace Lieb.Models
{
public class LiebUser : IdentityUser
{
public int LiebUserId { get; set; }
public ulong DiscordUserId { get; set; }
public string Name { get; set; } = string.Empty;
public string Pronouns { get; set; } = string.Empty;
public DateTime? Birthday { get; set; }
public ICollection<GuildWars2Account> GuildWars2Accounts { get; set; } = new List<GuildWars2Account>();
}
}