package com.pollex.pam.web.rest.vm;
|
|
public class OtpAccount {
|
private String account;
|
private String indexKey;
|
|
public OtpAccount(String account, String indexKey) {
|
this.account = account;
|
this.indexKey = indexKey;
|
}
|
|
public String getAccount() {
|
return account;
|
}
|
|
public void setAccount(String account) {
|
this.account = account;
|
}
|
|
public String getIndexKey() {
|
return indexKey;
|
}
|
|
public void setIndexKey(String indexKey) {
|
this.indexKey = indexKey;
|
}
|
}
|