source: src/main/java/com/example/skychasemk/dto/AirportDTO.java

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

Initial commit

  • Property mode set to 100644
File size: 930 bytes
Line 
1package com.example.skychasemk.dto;
2
3public class AirportDTO {
4
5 private Integer airportID;
6 private String name;
7 private Integer city;
8 private String country;
9 private String code;
10
11 // Getters and Setters
12 public Integer getAirportID() {
13 return airportID;
14 }
15
16 public void setAirportID(Integer airportID) {
17 this.airportID = airportID;
18 }
19
20 public String getName() {
21 return name;
22 }
23
24 public void setName(String name) {
25 this.name = name;
26 }
27
28 public Integer getCity() {
29 return city;
30 }
31
32 public void setCity(Integer city) {
33 this.city = city;
34 }
35
36 public String getCountry() {
37 return country;
38 }
39
40 public void setCountry(String country) {
41 this.country = country;
42 }
43
44 public String getCode() {
45 return code;
46 }
47
48 public void setCode(String code) {
49 this.code = code;
50 }
51}
Note: See TracBrowser for help on using the repository browser.