/** * Copyright (c) 2014-2017 by the respective copyright holders. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html */ package org.eclipse.smarthome.core.thing.dto; import java.util.List; /** * This is a data transfer object that is used to serialize channel group definitions. * * @author Dennis Nobel - Initial contribution */ public class ChannelGroupDefinitionDTO { public String id; public String description; public String label; public List<ChannelDefinitionDTO> channels; public ChannelGroupDefinitionDTO() { } public ChannelGroupDefinitionDTO(String id, String label, String description, List<ChannelDefinitionDTO> channels) { this.id = id; this.label = label; this.description = description; this.channels = channels; } }