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