Created
November 18, 2020 22:17
-
-
Save vaygeth89/7ffe0c539f9d94d27da645c751e08df3 to your computer and use it in GitHub Desktop.
tutorial-dotnet-JWTProtectedAPI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace JWTProtectedAPI.ViewModels | |
{ | |
public class UserProfile | |
{ | |
public string Email { get; set; } | |
public string Username { get; set; } | |
public string PhoneNumber { get; set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment