]> git.basschouten.com Git - openhab-addons.git/blob
c57cfaa2334f8b527d9b097a06a532672ca26e20
[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.wolfsmartset.internal.dto;
14
15 /**
16  * Link the SubMenuEntryDTO with the MenuItemTabViewDTO
17  * 
18  * @author Bo Biene - Initial contribution
19  */
20 public class SubMenuEntryWithMenuItemTabView {
21     public SubMenuEntryDTO subMenuEntryDTO;
22     public MenuItemTabViewDTO menuItemTabViewDTO;
23
24     public SubMenuEntryWithMenuItemTabView(SubMenuEntryDTO subMenuEntryDTO, MenuItemTabViewDTO menuItemTabViewDTO) {
25         this.subMenuEntryDTO = subMenuEntryDTO;
26         this.menuItemTabViewDTO = menuItemTabViewDTO;
27     }
28 }