Open MarekHohmann opened 5 years ago
public interface PresentationDto {
// ...
List<PresentationSeatsDto> getSeats();
}
public interface PresentationSeatsDto {
long getId(); // identify seat in response via ID
String getRow();
int getSeatNumber();
boolean isTaken();
}