]> git.basschouten.com Git - openhab-addons.git/blob
457f02688847c4e0bf61c6ca474529691f91ba53
[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.tapocontrol.internal.structures;
14
15 import java.util.List;
16
17 import org.eclipse.jdt.annotation.NonNullByDefault;
18
19 /**
20  * Tapo-Child Structure Class
21  *
22  * @author GaĆ«l L'hopital - Initial contribution
23  */
24 @NonNullByDefault
25 public class TapoChildData {
26     private int startIndex = 0;
27     private int sum = 0;
28     private List<TapoChild> childDeviceList = List.of();
29
30     public int getStartIndex() {
31         return startIndex;
32     }
33
34     public int getSum() {
35         return sum;
36     }
37
38     public List<TapoChild> getChildDeviceList() {
39         return childDeviceList;
40     }
41 }