-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathForecastDTO.java
64 lines (49 loc) · 1.33 KB
/
ForecastDTO.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.arifulislam.tourguidepro.weather;
public class ForecastDTO {
private String cityName, date, mainWeather, wind, icon, temperature, description, max, min,
pressure;
public ForecastDTO(String cityName, String date, String mainWeather, String wind, String
icon, String temperature, String description, String max, String min, String
pressure) {
this.cityName = cityName;
this.date = date;
this.mainWeather = mainWeather;
this.wind = wind;
this.icon = icon;
this.temperature = temperature;
this.description = description;
this.max = max;
this.min = min;
this.pressure = pressure;
}
public String getCityName() {
return cityName;
}
public String getDate() {
return date;
}
public String getMainWeather() {
return mainWeather;
}
public String getWind() {
return wind;
}
public String getIcon() {
return icon;
}
public String getTemperature() {
return temperature;
}
public String getDescription() {
return description;
}
public String getMax() {
return max;
}
public String getMin() {
return min;
}
public String getPressure() {
return pressure;
}
}