mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 18:41:14 +01:00
15 lines
397 B
Java
15 lines
397 B
Java
|
package nodomain.freeyourgadget.gadgetbridge.model;
|
||
|
|
||
|
public class WeatherSpec {
|
||
|
public int timestamp;
|
||
|
public String location;
|
||
|
public int currentTemp;
|
||
|
public int currentConditionCode;
|
||
|
public String currentCondition;
|
||
|
public int todayMaxTemp;
|
||
|
public int todayMinTemp;
|
||
|
public int tomorrowMaxTemp;
|
||
|
public int tomorrowMinTemp;
|
||
|
public int tomorrowConditionCode;
|
||
|
}
|