13 lines
258 B
Java
13 lines
258 B
Java
package com.cloudhandson.vpdbackoffice.domain.structured;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
public record StructuredDataPreview(
|
|
StructuredDataTable table,
|
|
List<String> columns,
|
|
List<Map<String, Object>> rows,
|
|
int rowLimit
|
|
) {
|
|
}
|