18 lines
190 B
JavaScript
Raw Normal View History

2022-08-09 19:14:27 +02:00
'use strict';
class Field {
constructor(config) {
this.config = config;
}
toDB(value) {
return value;
}
fromDB(value) {
return value;
}
}
module.exports = Field;