package ${vhGrpcBuilder_packageName}.${vhGrpcBuilder_sprojectName}.vo.base;

public class RotateImageVo {

	private String path;
	private int angle;
	public String getPath() {
		return path;
	}
	public void setPath(String path) {
		this.path = path;
	}
	public int getAngle() {
		return angle;
	}
	public void setAngle(int angle) {
		this.angle = angle;
	}
	@Override
	public String toString() {
		return "RotateImageVo [path=" + path + ", angle=" + angle + "]";
	}
	
	
}
