import { Command } from "../bus/Command"; export class SetWorkflowActivationCommand extends Command> { constructor( public readonly workflowId: string, public readonly active: boolean, ) { super(); } }