mirror of https://github.com/Hypfer/Valetudo.git
19 lines
351 B
JavaScript
19 lines
351 B
JavaScript
const SerializableEntity = require("./SerializableEntity");
|
|
|
|
|
|
|
|
class Attribute extends SerializableEntity {
|
|
/**
|
|
* @param {object} options
|
|
* @param {object} [options.metaData]
|
|
*/
|
|
constructor(options) {
|
|
super(options);
|
|
|
|
this.type = undefined;
|
|
this.subType = undefined;
|
|
}
|
|
}
|
|
|
|
module.exports = Attribute;
|