mirror of
https://github.com/bspeice/UNCCGameDay
synced 2025-04-21 00:41:33 -04:00
29 lines
629 B
Java
29 lines
629 B
Java
package com.uncc.gameday.parking;
|
|
|
|
public class ParkingLot {
|
|
|
|
private ParkingChoice location;
|
|
private int filled_pct;
|
|
private ParkingCoordinate coordinate;
|
|
|
|
public int getFilledPct() {
|
|
return filled_pct;
|
|
}
|
|
public void setFilledPct(int filled_pct) {
|
|
this.filled_pct = filled_pct;
|
|
}
|
|
public ParkingChoice getLocation() {
|
|
return location;
|
|
}
|
|
public void setLocation(ParkingChoice location) {
|
|
this.location = location;
|
|
}
|
|
public ParkingCoordinate getCoordinate() {
|
|
return coordinate;
|
|
}
|
|
public void setCoordinate(ParkingCoordinate coordinate) {
|
|
this.coordinate = coordinate;
|
|
}
|
|
|
|
}
|