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