amisa-forms
Version:
models of armisa!
24 lines (23 loc) • 579 B
JavaScript
;
export 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;
}
}