]> git.basschouten.com Git - openhab-addons.git/blob
00acbf69bb817095b900c103af583324ce07c169
[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.yioremote.internal.dto;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16
17 /**
18  * The {@link IRCode} the IRCode DTO
19  *
20  *
21  * @author Michael Loercher - Initial contribution
22  */
23 @NonNullByDefault
24 public class IRCode {
25     private String code = "0;0x0;0;0";
26     private String format = "hex";
27
28     public String getFormat() {
29         return format;
30     }
31
32     public void setFormat(String format) {
33         this.format = format;
34     }
35
36     public String getCode() {
37         return code;
38     }
39
40     public void setCode(String code) {
41         this.code = code;
42     }
43 }