cryptonote-api/src/main/java/com/jkgroller/cryptonote/service/to/RetrieveUserAccountRequestTO.java
john 3e62ad946d chore(*): restore from backup
this project was archived and never moved to my new gittea instance, until now
2025-11-24 15:59:13 -07:00

40 lines
611 B
Java

package com.jkgroller.cryptonote.service.to;
/**
*
*/
public class RetrieveUserAccountRequestTO {
private String userName;
private String password;
/**
* @return
*/
public String getUserName() {
return userName;
}
/**
* @param userName
*/
public void setUserName(String userName) {
this.userName = userName;
}
/**
* @return
*/
public String getPassword() {
return password;
}
/**
* @param password
*/
public void setPassword(String password) {
this.password = password;
}
}