Created
January 26, 2016 02:26
-
-
Save leeyc09/0bd47a6db3474317bfae to your computer and use it in GitHub Desktop.
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
public class AuthModel implements Parcelable { | |
public static final String TAG = LoginActivity.class.getSimpleName(); | |
public static final String PARCELABLE_KEY = TAG + ":" + "ParcelableKey"; | |
String email; //json의 name 과 동일해야 함. | |
String nick_name; | |
String profile_modified; | |
String profile_thumb; | |
long storage_limit; | |
long storage_used; | |
/*getter, setter */ | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment