All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.debugthug.xo.availability.Others Maven / Gradle / Ivy

package com.github.debugthug.xo.availability;

import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;

@XStreamAlias("Others")
public class Others {

	@XStreamAsAttribute
	@XStreamAlias("CabinCode")
	private String cabinCode;
	
	@XStreamAsAttribute
	@XStreamAlias("Nationality")
	private String nationality;

	public String getCabinCode() {
		return cabinCode;
	}

	public void setCabinCode(String cabinCode) {
		this.cabinCode = cabinCode;
	}

	public String getNationality() {
		return nationality;
	}

	public void setNationality(String nationality) {
		this.nationality = nationality;
	}
	
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy