Advertisement
Guest User

StoreResponse

a guest
Sep 17th, 2019
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. class StoreResponse {
  2.  
  3. @SerializedName("success")
  4. @Expose
  5. var success: Boolean? = null
  6. @SerializedName("store")
  7. @Expose
  8. var store: List<Store>? = null
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement