-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSys.java
More file actions
41 lines (31 loc) · 781 Bytes
/
Sys.java
File metadata and controls
41 lines (31 loc) · 781 Bytes
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
package com.example.weatherapp.Model;
public class Sys {
private double message;
private String country;
private int sunrise;
private int sunset;
public double getMessage() {
return message;
}
public void setMessage(double message) {
this.message = message;
}
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}
public int getSunrise() {
return sunrise;
}
public void setSunrise(int sunrise) {
this.sunrise = sunrise;
}
public int getSunset() {
return sunset;
}
public void setSunset(int sunset) {
this.sunset = sunset;
}
}