/** * Copyright (c) 2016 Markus Rathgeb * 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.automation.dto; import java.util.List; import org.eclipse.smarthome.automation.type.Input; /** * This is a data transfer object that is used to serialize the respective class. * * @author Markus Rathgeb - Initial contribution and API */ public class ConditionTypeDTO extends ModuleTypeDTO { public List<Input> inputs; }