/*
* Distributable under LGPL v3 license.
* See terms of license at https://github.com/Yunfeng/schotel/blob/master/LICENSE
*/
package cn.buk.api.dto.hotel;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import java.util.List;
/**
* User: yfdai
* Date: 14-10-30
* Time: 上午11:48
* 设施信息
*/
public class FacilityInfo {
@XStreamAlias("GuestRooms")
private List<GuestRoom> guestRooms;
public List<GuestRoom> getGuestRooms() {
return guestRooms;
}
public void setGuestRooms(List<GuestRoom> guestRooms) {
this.guestRooms = guestRooms;
}
}