mirror of
https://github.com/ascribe/onion.git
synced 2025-01-05 11:25:09 +01:00
12 lines
339 B
JavaScript
12 lines
339 B
JavaScript
class TableColumnItem {
|
|
constructor(columnName, displayName, displayType, rowWidth, canBeOrdered) {
|
|
this.columnName = columnName;
|
|
this.displayName = displayName;
|
|
this.displayType = displayType;
|
|
this.rowWidth = rowWidth;
|
|
this.canBeOrdered = canBeOrdered;
|
|
}
|
|
|
|
}
|
|
|
|
export default TableColumnItem; |