package domain; public class HouseFeatures { private int nRooms; private int nKitchens; private int nBaths; private int nLivings; private int nParkings; public HouseFeatures(int nRooms, int nKitchens, int nBaths, int nLivings, int nParkings) { super(); this.nRooms = nRooms; this.nKitchens = nKitchens; this.nBaths = nBaths; this.nLivings = nLivings; this.nParkings = nParkings; } }