2022-08-11 10:20:50 +02:00

18 lines
190 B
JavaScript

'use strict';
class Field {
constructor(config) {
this.config = config;
}
toDB(value) {
return value;
}
fromDB(value) {
return value;
}
}
module.exports = Field;