Skip to content

Commit

Permalink
Adds Display name to profile responses
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkors committed Mar 27, 2023
1 parent 197f03b commit 3c58d5c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ public class GetUserProfile

public string Real_Name{ get; set; }
public string Real_Name_Normalized{ get; set; }

public string Display_Name { get; set; }
public string Display_Name_Normalized { get; set; }

public string Phone{ get; set; }
public string Email{ get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ public class UserProfile : ProfileIcons
public string First_Name { get; set; }
public string Last_Name { get; set; }
public string Real_Name { get; set; }
public string Display_Name { get; set; }
public string Display_Name_Normalized { get; set; }
public string Email { get; set; }
public string Skype { get; set; }
public string Status_Emoji { get; set; }
Expand Down

0 comments on commit 3c58d5c

Please sign in to comment.