BarInsta/app/src/main/java/awais/instagrabber/repositories/responses/HdProfilePicUrlInfo.java

17 lines
387 B
Java
Raw Normal View History

2021-01-27 02:21:48 +00:00
package awais.instagrabber.repositories.responses;
public class HdProfilePicUrlInfo {
private final String url;
private final int width, height;
public HdProfilePicUrlInfo(final String url, final int width, final int height) {
this.url = url;
this.width = width;
this.height = height;
}
public String getUrl() {
return url;
}
}