com.qcloud.cos.model.ciModel.auditing.Location Maven / Gradle / Ivy
package com.qcloud.cos.model.ciModel.auditing;
import com.thoughtworks.xstream.annotations.XStreamAlias;
public class Location {
@XStreamAlias("X")
private String x;
@XStreamAlias("Y")
private String y;
@XStreamAlias("Width")
private String width;
@XStreamAlias("Height")
private String height;
@XStreamAlias("Rotate")
private String rotate;
public String getX() {
return x;
}
public void setX(String x) {
this.x = x;
}
public String getY() {
return y;
}
public void setY(String y) {
this.y = y;
}
public String getWidth() {
return width;
}
public void setWidth(String width) {
this.width = width;
}
public String getHeight() {
return height;
}
public void setHeight(String height) {
this.height = height;
}
public String getRotate() {
return rotate;
}
public void setRotate(String rotate) {
this.rotate = rotate;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy