control-see
Version:
Control Util Documentos Electronicos SUNAT
21 lines • 408 B
JavaScript
export 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;
}
}
//# sourceMappingURL=AdditionalProperty.js.map