Skip to content

Instantly share code, notes, and snippets.

@leeyc09
Created January 26, 2016 02:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leeyc09/0bd47a6db3474317bfae to your computer and use it in GitHub Desktop.
Save leeyc09/0bd47a6db3474317bfae to your computer and use it in GitHub Desktop.
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