Add collaboration feature
[sdc.git] / openecomp-be / tools / zusammen-tools / src / main / java / org / openecomp / core / tools / model / TableData.java
1 /**
2  * Copyright © 2016-2017 European Support Limited.
3  */
4 package org.openecomp.core.tools.model;
5
6 import java.util.ArrayList;
7 import java.util.List;
8
9 public class TableData {
10     public List<ColumnDefinition> definitions = new ArrayList<>();
11     public List<List<String>> rows = new ArrayList<>();
12 }