chore(#8): Add sqlite database

This commit is contained in:
Josh Creek
2023-09-14 22:14:08 +01:00
parent da9f711ff9
commit 06df9e2fa7
10 changed files with 273 additions and 23 deletions
+14
View File
@@ -0,0 +1,14 @@
namespace WhoAtX.Models;
public class UserProfile
{
public int Id { get; set; }
public string Name { get; set; }
public string Pronouns { get; set; }
public string NamePronunciationPath { get; set; }
public string AreasOfKnowledge { get; set; }
public string Projects { get; set; }
public string Team { get; set; }
public string WorkingHours { get; set; }
public string TimeZone { get; set; }
}