Created
August 1, 2017 07:29
-
-
Save hassanabidpk/1f4ea1976b60be0054113a54dd0fa5a8 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 co.searchrestaurant.android.app.fetch; | |
import java.util.List; | |
/** | |
* Created by hassanabid on 2/27/16. | |
*/ | |
public class SearchRestaurantResponse { | |
public String status; | |
public String name; | |
public String address; | |
public int checkins; | |
public String latitude; | |
public String longitude; | |
public String photo_url; | |
public String venue_id; | |
public String phone_number; | |
public String created_at; | |
public String updated_at; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment