View Javadoc
1   package org.oxerr.stubhub.client.model;
2   
3   public class PurchaseSeatingRequest {
4   
5   	private String section;
6   
7   	private String row;
8   
9   	public String getSection() {
10  		return section;
11  	}
12  
13  	public void setSection(String section) {
14  		this.section = section;
15  	}
16  
17  	public String getRow() {
18  		return row;
19  	}
20  
21  	public void setRow(String row) {
22  		this.row = row;
23  	}
24  
25  }