From bde2735096386ca2938a4cb7aba7e6a3db181aec Mon Sep 17 00:00:00 2001 From: "t.ruspekhofer" Date: Wed, 16 Feb 2022 18:55:16 +0100 Subject: [PATCH] added pronouns --- Lieb/Models/User.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Lieb/Models/User.cs b/Lieb/Models/User.cs index b8f678b..3ba9080 100644 --- a/Lieb/Models/User.cs +++ b/Lieb/Models/User.cs @@ -5,6 +5,7 @@ public int UserId { 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 GuildWars2Accounts { get; set; } = new List(); }