Revert "changes LiebContext, renamed User to LiebUser"

This reverts commit 7b44e41eb2.
This commit is contained in:
t.ruspekhofer 2022-02-20 15:48:20 +01:00
parent 31a0e20f1d
commit e0fd579c00
12 changed files with 20 additions and 31 deletions

View file

@ -1,14 +0,0 @@
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>();
}
}