Created
May 1, 2018 20:48
-
-
Save lusabo/9acc61e4255ba7a6a7d490fc78cd1a37 to your computer and use it in GitHub Desktop.
CredentialsDTO
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
package com.eco.security; | |
// Imports | |
public class CredentialsDTO { | |
@NotEmpty | |
public String username; | |
@NotEmpty | |
public String password; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment