source: src/main/java/com/example/skychasemk/dto/DestinationDTO.java@ 57e58a3

Last change on this file since 57e58a3 was 57e58a3, checked in by ste08 <sjovanoska@…>, 4 months ago

Initial commit

  • Property mode set to 100644
File size: 1.3 KB
Line 
1package com.example.skychasemk.dto;
2
3public class DestinationDTO {
4
5 private Integer destinationID;
6
7 private String name;
8
9 private String country;
10
11 private String description;
12
13 private String popularAttraction;
14
15 private String bestTimeToVisit;
16
17 // Getters and Setters
18 public Integer getDestinationID() {
19 return destinationID;
20 }
21
22 public void setDestinationID(Integer destinationID) {
23 this.destinationID = destinationID;
24 }
25
26 public String getName() {
27 return name;
28 }
29
30 public void setName(String name) {
31 this.name = name;
32 }
33
34 public String getCountry() {
35 return country;
36 }
37
38 public void setCountry(String country) {
39 this.country = country;
40 }
41
42 public String getDescription() {
43 return description;
44 }
45
46 public void setDescription(String description) {
47 this.description = description;
48 }
49
50 public String getPopularAttraction() {
51 return popularAttraction;
52 }
53
54 public void setPopularAttraction(String popularAttraction) {
55 this.popularAttraction = popularAttraction;
56 }
57
58 public String getBestTimeToVisit() {
59 return bestTimeToVisit;
60 }
61
62 public void setBestTimeToVisit(String bestTimeToVisit) {
63 this.bestTimeToVisit = bestTimeToVisit;
64 }
65}
Note: See TracBrowser for help on using the repository browser.