blob: 3e1f0bd974736f6340b0c952d6c0293302e49f60 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
package com.juick.server.helpers;
/**
* Created by vt on 09/02/16.
*/
public class Auth {
private String account;
private String authCode;
public Auth(String account, String authCode) {
this.account = account;
this.authCode = authCode;
}
public String getAccount() {
return account;
}
public String getAuthCode() {
return authCode;
}
}
|