]> git.basschouten.com Git - openhab-addons.git/blob
4d9fb2b95a472ded0a1fa10b8a459b6bb4ca57b0
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2020 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
14 package org.openhab.binding.touchwand.internal.dto;
15
16 /**
17  * The {@link Csc} implements Csc data class.
18  *
19  * @author Roie Geron - Initial contribution
20  */
21 public class Csc {
22
23     private int sceneNo;
24     private int ts;
25     private int keyAttr;
26
27     public int getSceneNo() {
28         return sceneNo;
29     }
30
31     public void setSceneNo(int sceneNo) {
32         this.sceneNo = sceneNo;
33     }
34
35     public int getTs() {
36         return ts;
37     }
38
39     public void setTs(int ts) {
40         this.ts = ts;
41     }
42
43     public int getKeyAttr() {
44         return keyAttr;
45     }
46
47     public void setKeyAttr(int keyAttr) {
48         this.keyAttr = keyAttr;
49     }
50 }