mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
13 lines
464 B
JavaScript
13 lines
464 B
JavaScript
class TableColumnContentModel {
|
|
// ToDo: Add validation for all passed-in parameters
|
|
constructor(transformFn, columnName, displayName, displayType, rowWidth, canBeOrdered) {
|
|
this.transformFn = transformFn;
|
|
this.columnName = columnName;
|
|
this.displayName = displayName;
|
|
this.displayType = displayType;
|
|
this.rowWidth = rowWidth;
|
|
this.canBeOrdered = canBeOrdered;
|
|
}
|
|
}
|
|
|
|
export default TableColumnContentModel; |