]> git.basschouten.com Git - openhab-addons.git/blob
0f64c7fa52b63225b1293073e91e7ffc4568b31e
[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.draytonwiser.internal.model;
14
15 /**
16  * @author Andrew Schofield - Initial contribution
17  */
18 public class BoilerSettingsDTO {
19
20     private String controlType;
21     private String fuelType;
22     private String cycleRate;
23
24     public String getControlType() {
25         return controlType;
26     }
27
28     public void setControlType(final String controlType) {
29         this.controlType = controlType;
30     }
31
32     public String getFuelType() {
33         return fuelType;
34     }
35
36     public void setFuelType(final String fuelType) {
37         this.fuelType = fuelType;
38     }
39
40     public String getCycleRate() {
41         return cycleRate;
42     }
43
44     public void setCycleRate(final String cycleRate) {
45         this.cycleRate = cycleRate;
46     }
47 }