Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. package com.example.farid.retrofit;
  2.  
  3. import com.google.gson.annotations.Expose;
  4. import com.google.gson.annotations.SerializedName;
  5.  
  6. public class Result {
  7.  
  8.     @SerializedName("info")
  9.     @Expose
  10.     private Info info;
  11.  
  12.     public Info getInfo() {
  13.         return info;
  14.     }
  15.  
  16.     public void setInfo(Info info) {
  17.  
  18.         this.info = info;
  19.     }
  20.  
  21. }