]> git.basschouten.com Git - openhab-addons.git/blob
0119fbd37ff319e103f67a920c9a4a9061e5c4d8
[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.yamahareceiver.internal.state;
14
15 import java.util.Map;
16 import java.util.TreeMap;
17
18 /**
19  * List of AVR input channel names with <Input ID, Input Name>
20  *
21  * @author David Graeff - Initial contribution
22  */
23 public class AvailableInputState {
24
25     // List of inputs with <Input ID, Input Name>
26     public Map<String, String> availableInputs = new TreeMap<>();
27 }