Advertisement
Picko

Response

Mar 20th, 2013
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1. package com.androidsmith.sacc;
  2.  
  3. import java.util.ArrayList;
  4.  
  5. import com.androidsmith.sacc.model.Country;
  6.  
  7. public class Response {
  8.    
  9.     ArrayList<Country> data;
  10.    
  11.     public Response() {
  12.         data = new ArrayList<Country>();
  13.     }
  14.    
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement