source: trip-planner/src/main/java/finki/diplomska/tripplanner/models/dto/PlannerLocationDto.java

Last change on this file was ceaed42, checked in by Ema <ema_spirova@…>, 3 years ago

add location to planner

  • Property mode set to 100644
File size: 356 bytes
Line 
1package finki.diplomska.tripplanner.models.dto;
2
3import lombok.Data;
4
5@Data
6public class PlannerLocationDto {
7 private Long locationId;
8 private Long plannerId;
9
10 public PlannerLocationDto() {
11 }
12
13 public PlannerLocationDto(Long locationId, Long plannerId) {
14 this.locationId = locationId;
15 this.plannerId = plannerId;
16 }
17}
Note: See TracBrowser for help on using the repository browser.