nurrohim11

Untitled

Aug 3rd, 2018
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.43 KB | None | 0 0
  1. package com.izzaweb.bengkel.Models.Bengkel;
  2.  
  3. import com.google.gson.annotations.Expose;
  4. import com.google.gson.annotations.SerializedName;
  5.  
  6. import java.util.List;
  7.  
  8.  
  9. public class BengkelList {
  10.     @SerializedName("Bengkel")
  11.     @Expose
  12.     private List<Bengkel> bengkel = null;
  13.  
  14.     public List<Bengkel> getBengkel() {
  15.         return bengkel;
  16.     }
  17.  
  18.     public void setBengkel(List<Bengkel> bengkel) {
  19.         this.bengkel = bengkel;
  20.     }
  21. }
Add Comment
Please, Sign In to add comment