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

model.RoomInfo Maven / Gradle / Ivy

There is a newer version: 1.3.9
Show newest version
package model;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

@JsonIgnoreProperties(ignoreUnknown = true)
public class RoomInfo {

    private Room roomAttributes;

    private RoomSystemInfo roomSystemInfo;

    public Room getRoomAttributes() {
        return roomAttributes;
    }

    public void setRoomAttributes(Room roomAttributes) {
        this.roomAttributes = roomAttributes;
    }

    public RoomSystemInfo getRoomSystemInfo() {
        return roomSystemInfo;
    }

    public void setRoomSystemInfo(RoomSystemInfo roomSystemInfo) {
        this.roomSystemInfo = roomSystemInfo;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy