summaryrefslogtreecommitdiffstats
path: root/openecomp-be/tools/zusammen-tools/src/main/java/org/openecomp/core/tools/model/TableData.java
blob: 155f35c0066665e2b1f03419db4f39495f1087b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/**
 * Copyright © 2016-2017 European Support Limited.
 */
package org.openecomp.core.tools.model;

import java.util.ArrayList;
import java.util.List;

public class TableData {
    public List<ColumnDefinition> definitions = new ArrayList<>();
    public List<List<String>> rows = new ArrayList<>();
}