control-see
Version:
Control Util Documentos Electronicos SUNAT
25 lines • 568 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AdditionalProperty = void 0;
class AdditionalProperty {
get id() {
return this._id;
}
set id(id) {
this._id = id;
}
get name() {
return this._name;
}
set name(name) {
this._name = name;
}
get value() {
return this._value;
}
set value(value) {
this._value = value;
}
}
exports.AdditionalProperty = AdditionalProperty;
//# sourceMappingURL=AdditionalProperty.js.map