Make GamedayService use the enum

master
bspeice 2013-10-18 18:49:15 -04:00
parent a02e59b81f
commit 33e1eeb86e
1 changed files with 1 additions and 1 deletions

View File

@ -13,6 +13,6 @@ public interface GamedayService {
ParkingLot listLot(@Path("lot") String lot);
@POST("/rating/")
void rateLot(@Body ParkingRating rating, @Body ParkingChoices parking_lot);
void rateLot(@Body RatingChoices rating, @Body ParkingChoices parking_lot);
}