ir.sadeghpro.insta.client.Dimension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of insta4j Show documentation
Show all versions of insta4j Show documentation
this is library for working with instagram without using instagram api.
this library use instagram web browser
package ir.sadeghpro.insta.client;
public class Dimension {
private int width;
private int height;
public Dimension(int width, int height){
this.width = width;
this.height = height;
}
public Dimension(){
}
public void setSize(int width, int height){
this.width = width;
this.height = height;
}
public int getWidth() {
return width;
}
public void setWidth(int width) {
this.width = width;
}
public int getHeight() {
return height;
}
public void setHeight(int height) {
this.height = height;
}
}