source: src/main/java/com/example/villadihovo/dto/ReservationForFoodDto.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: 416 bytes
Line 
1package com.example.villadihovo.dto;
2
3import lombok.AllArgsConstructor;
4import lombok.Data;
5
6import java.io.Serializable;
7import java.time.LocalDate;
8
9@Data
10@AllArgsConstructor
11public class ReservationForFoodDto implements Serializable {
12 private String full_name;
13 private String meal_type;
14 private int quantity;
15 private float price;
16 private int number_guests;
17 private LocalDate start_date;
18}
Note: See TracBrowser for help on using the repository browser.