armisa-models
Version:
models of armisa!
27 lines (26 loc) • 729 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Argument = void 0;
class Argument {
constructor() {
}
static Id(id, finedInRows) {
const result = new Argument();
result.id = id;
result.finedInRows = finedInRows;
return result;
}
static Code(code, finedInRows) {
const result = new Argument();
result.code = code;
result.finedInRows = finedInRows;
return result;
}
static Object(object, finedInRows) {
const result = new Argument();
result.object = object;
result.finedInRows = finedInRows;
return result;
}
}
exports.Argument = Argument;