Advertisement
Guest User

Untitled

a guest
Jan 16th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. package com.androidjavapoint.gsonsample;
  2.  
  3. import com.google.gson.annotations.SerializedName;
  4.  
  5. import java.util.Date;
  6.  
  7. public class Employee {
  8. @SerializedName("Id")
  9. public long id;
  10.  
  11. @SerializedName("PersonalDetails")
  12. public PersonalDetails personalDetails;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement