Skip to content

Instantly share code, notes, and snippets.

@vaygeth89
Created November 18, 2020 21:43
Show Gist options
  • Save vaygeth89/ee6c64e5afdeb7e628fd9e13385d70c5 to your computer and use it in GitHub Desktop.
Save vaygeth89/ee6c64e5afdeb7e628fd9e13385d70c5 to your computer and use it in GitHub Desktop.
tutorial-dotnet-JWTProtectedAPI
namespace JWTProtectedAPI.ViewModels
{
public class SignUpData
{
public string Username { get; set; }
public string Email { get; set; }
public string Password { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment