mirror of
https://github.com/bspeice/UNCCGameDay
synced 2025-01-09 15:30:06 -05:00
Change ParkingRating to use the POJO pattern
This commit is contained in:
parent
47e327d65e
commit
a02e59b81f
@ -1,6 +1,19 @@
|
|||||||
package com.uncc.gameday.registration;
|
package com.uncc.gameday.registration;
|
||||||
|
|
||||||
public class ParkingRating {
|
public class ParkingRating {
|
||||||
ParkingChoices parking_lot;
|
private ParkingChoices parking_lot;
|
||||||
RatingChoices rating;
|
private RatingChoices rating;
|
||||||
|
|
||||||
|
public ParkingChoices getParkingLot() {
|
||||||
|
return parking_lot;
|
||||||
|
}
|
||||||
|
public void setParkingLot(ParkingChoices parking_lot) {
|
||||||
|
this.parking_lot = parking_lot;
|
||||||
|
}
|
||||||
|
public RatingChoices getRating() {
|
||||||
|
return rating;
|
||||||
|
}
|
||||||
|
public void setRating(RatingChoices rating) {
|
||||||
|
this.rating = rating;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user