Advertisement
cendolinside

tblAkunDatabase_GET

Nov 12th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.53 KB | None | 0 0
  1. package com.test.api.api.GetSet;
  2.  
  3. import com.google.gson.annotations.Expose;
  4. import com.google.gson.annotations.SerializedName;
  5.  
  6. import java.util.List;
  7.  
  8. /**
  9.  * Created by Jan Sebastian on 07/11/2017.
  10.  */
  11. public class tblAkunDatabase_GET {
  12.     @SerializedName("result")
  13.     @Expose
  14.     List<tblAkunDatabase> listtblAkun;
  15.  
  16.     public void setListtblAkun(List<tblAkunDatabase> listtblAkun) {
  17.         this.listtblAkun = listtblAkun;
  18.     }
  19.  
  20.     public List<tblAkunDatabase> getListtblAkun() {
  21.         return listtblAkun;
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement