package femr.common.models; import java.util.Date; public class TripItem { private String teamName; private String tripCity; private String tripCountry; private Date tripStartDate; private Date tripEndDate; public String getTeamName() { return teamName; } public void setTeamName(String teamName) { this.teamName = teamName; } public String getTripCity() { return tripCity; } public void setTripCity(String tripCity) { this.tripCity = tripCity; } public String getTripCountry() { return tripCountry; } public void setTripCountry(String tripCountry) { this.tripCountry = tripCountry; } public Date getTripStartDate() { return tripStartDate; } public void setTripStartDate(Date tripStartDate) { this.tripStartDate = tripStartDate; } public Date getTripEndDate() { return tripEndDate; } public void setTripEndDate(Date tripEndDate) { this.tripEndDate = tripEndDate; } }