com.github.debugthug.xo.booking.FareInfo Maven / Gradle / Ivy
package com.github.debugthug.xo.booking;
import java.util.ArrayList;
import java.util.List;
import com.github.debugthug.xo.Fare;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamImplicit;
@XStreamAlias("FareInfo")
public class FareInfo {
@XStreamImplicit
@XStreamAlias("Fare")
private List fareList=new ArrayList();
public List getFareList() {
return fareList;
}
public void setFareList(List fareList) {
this.fareList = fareList;
}
}