renamed User to LiebUser

This commit is contained in:
t.ruspekhofer 2022-02-21 00:27:26 +01:00
parent e0fd579c00
commit 15608f0e31
10 changed files with 15 additions and 15 deletions

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

@ -0,0 +1,12 @@
namespace Lieb.Models
{
public class LiebUser
{
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>();
}
}