Skip to content

Instantly share code, notes, and snippets.

@fmshk97
Last active February 21, 2021 12:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fmshk97/b009d7c4b943b5a7920d126bb211fb4e to your computer and use it in GitHub Desktop.
Save fmshk97/b009d7c4b943b5a7920d126bb211fb4e to your computer and use it in GitHub Desktop.
LoginInputModel.cs
namespace Authentication.Apis.Models
{
public class LoginInputModel
{
public string UserName { get; set; }
[DataType(DataType.Password)]
public string Password { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment