source: src/main/java/com/example/villadihovo/dto/ReservationForActivityDto.java@ f7c05a1

Last change on this file since f7c05a1 was f7c05a1, checked in by Elena Shulevska <elena.shulevska@…>, 15 months ago

initial commit of the source code on origin

  • Property mode set to 100644
File size: 399 bytes
Line 
1package com.example.villadihovo.dto;
2
3import lombok.AllArgsConstructor;
4import lombok.Data;
5
6import java.time.LocalDate;
7
8@Data
9@AllArgsConstructor
10public class ReservationForActivityDto {
11 private String activity_type;
12 private float price;
13 private LocalDate start_date;
14 private LocalDate end_date;
15 private int number_of_interested_guests;
16 private String activity_location;
17}
Note: See TracBrowser for help on using the repository browser.