model-validator-ts
[](https://www.npmjs.com/package/model-validator-ts)
command-action
Inspired by https://github.com/collectiveidea/interactor
command-pattern-queue
```typescript
// command interface
export interface ICommand {
execute(): void
unexecute(): void
}