2015-05-22 16:51:08 +02:00
|
|
|
class TableColumnContentModel {
|
|
|
|
// ToDo: Add validation for all passed-in parameters
|
2015-06-04 11:41:56 +02:00
|
|
|
constructor(transformFn, columnName, displayName, displayType, rowWidth, canBeOrdered, link) {
|
2015-06-01 14:10:11 +02:00
|
|
|
this.transformFn = transformFn;
|
2015-05-21 16:02:42 +02:00
|
|
|
this.columnName = columnName;
|
|
|
|
this.displayName = displayName;
|
|
|
|
this.displayType = displayType;
|
|
|
|
this.rowWidth = rowWidth;
|
|
|
|
this.canBeOrdered = canBeOrdered;
|
2015-06-04 11:41:56 +02:00
|
|
|
this.link = link;
|
2015-05-21 16:02:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-22 16:51:08 +02:00
|
|
|
export default TableColumnContentModel;
|