2 * Copyright (c) 2010-2024 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
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
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.binding.denonmarantz.internal.xml.entities;
15 import javax.xml.bind.annotation.XmlAccessType;
16 import javax.xml.bind.annotation.XmlAccessorType;
17 import javax.xml.bind.annotation.XmlRootElement;
20 * Contains information about a Denon/Marantz receiver.
22 * @author Jeroen Idserda - Initial contribution
24 @XmlRootElement(name = "device_Info")
25 @XmlAccessorType(XmlAccessType.FIELD)
26 public class Deviceinfo {
28 private Integer deviceZones;
30 private String modelName;
32 public Integer getDeviceZones() {
36 public void setDeviceZones(Integer deviceZones) {
37 this.deviceZones = deviceZones;
40 public String getModelName() {
44 public void setModelName(String modelName) {
45 this.modelName = modelName;