Added firstName and lastName to the userModel

This commit is contained in:
Dominic Villemure
2024-04-09 23:46:46 -04:00
parent 49a10198e4
commit 6dc85438bf
3 changed files with 8 additions and 2 deletions

View File

@@ -4,5 +4,7 @@ public class UserModel
{
public string? Id { get; set; }
public string? UserName { get; set; }
public string? FirstName { get; set; }
public string? LastName { get; set; }
public string? Email { get; set; }
}