]> git.basschouten.com Git - openhab-addons.git/blob
f4352f4fc80c9e29678864901cf6d26c6b4a86a9
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License 2.0 which is available at
9  * http://www.eclipse.org/legal/epl-2.0
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.openweathermap.internal.dto.base;
14
15 /**
16  * Generated Plain Old Java Objects class for {@link Coord} from JSON.
17  *
18  * @author Christoph Weitkamp - Initial contribution
19  */
20 public class Coord {
21     private Double lon;
22     private Double lat;
23
24     public Double getLon() {
25         return lon;
26     }
27
28     public void setLon(Double lon) {
29         this.lon = lon;
30     }
31
32     public Double getLat() {
33         return lat;
34     }
35
36     public void setLat(Double lat) {
37         this.lat = lat;
38     }
39 }