mirror of
https://github.com/jcreek/WhoAtX.git
synced 2026-07-12 18:53:44 +00:00
15 lines
433 B
C#
15 lines
433 B
C#
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; }
|
|
}
|