PurchaseSeatingRequest.java

package org.oxerr.stubhub.client.model;

public class PurchaseSeatingRequest {

	private String section;

	private String row;

	public String getSection() {
		return section;
	}

	public void setSection(String section) {
		this.section = section;
	}

	public String getRow() {
		return row;
	}

	public void setRow(String row) {
		this.row = row;
	}

}