]> git.basschouten.com Git - openhab-addons.git/blob
92308853502802225bb3f81a9c2f1105fa30727b
[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.automower.internal.rest.api.automowerconnect.dto;
14
15 /**
16  * @author Markus Pfleger - Initial contribution
17  */
18 public class System {
19     private String name;
20     private String model;
21     private String serialNumber;
22
23     public String getName() {
24         return name;
25     }
26
27     public void setName(String name) {
28         this.name = name;
29     }
30
31     public String getModel() {
32         return model;
33     }
34
35     public void setModel(String model) {
36         this.model = model;
37     }
38
39     public String getSerialNumber() {
40         return serialNumber;
41     }
42
43     public void setSerialNumber(String serialNumber) {
44         this.serialNumber = serialNumber;
45     }
46 }