Skip to content

Instantly share code, notes, and snippets.

@BallerIndustries
Created October 14, 2017 10:14
Show Gist options
  • Save BallerIndustries/a52f8654628c338674044fca8b5dc5d7 to your computer and use it in GitHub Desktop.
Save BallerIndustries/a52f8654628c338674044fca8b5dc5d7 to your computer and use it in GitHub Desktop.
package com.baller.android_testing;
import java.util.List;
/**
* Created by anguruso on 10/14/2017.
*/
class FlickrPhotosSearchResponse
{
String stat;
Photos photos;
public class Photos
{
int page;
int pages;
int perPage;
String total;
List<Photo> photo;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment