Created
October 14, 2017 10:14
-
-
Save BallerIndustries/a52f8654628c338674044fca8b5dc5d7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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