"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AbstractWorkFlow = void 0;
class AbstractWorkFlow {
constructor(name) {
this.name = name;
}
getName() {
return this.name;
}
}
exports.AbstractWorkFlow = AbstractWorkFlow;