Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package com.uwetrottmann.tmdb2.entities;
import java.util.List;
publicabstractclassBaseResultsPage{
public Integer id;
public Integer page;
public Integer total_pages;
public Integer total_results;
public List results;
}