Created database

This commit is contained in:
t.ruspekhofer 2022-02-15 21:59:44 +01:00
parent e068536abe
commit eec8e419ba
19 changed files with 618 additions and 4 deletions

View file

@ -5,7 +5,7 @@
public int UserId { get; set; }
public ulong DiscordUserId { get; set; }
public string Name { get; set; } = string.Empty;
public DateTime Birthday { get; set; }
public DateTime? Birthday { get; set; }
public ICollection<GuildWars2Account> GuildWars2Accounts { get; set; } = new List<GuildWars2Account>();
}
}