mirror of
https://github.com/jcreek/WhoAtX.git
synced 2026-07-12 18:53:44 +00:00
chore(#8): Add sqlite database
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user