package com.newinternaldsp.Entity;

public class Banner{
    public int h;
    public int w;
    public int pos;
    
    
	public Banner() {
		super();
	}
	public Banner(int h, int w, int pos) {
		super();
		this.h = h;
		this.w = w;
		this.pos = pos;
	}
	public int getH() {
		return h;
	}
	public void setH(int h) {
		this.h = h;
	}
	public int getW() {
		return w;
	}
	public void setW(int w) {
		this.w = w;
	}
	public int getPos() {
		return pos;
	}
	public void setPos(int pos) {
		this.pos = pos;
	}
	@Override
	public String toString() {
		return "Banner{" + "h=" + h + ", w=" + w + ", pos='" + pos
				 + '\'' + '}';
	}
    
}