UNPKG

@mbc-cqrs-serverless/core

Version:
13 lines (12 loc) 335 B
import { CommandInputModel } from './command-input-model.interface'; export interface CommandModel extends CommandInputModel { status?: string; source?: string; requestId?: string; createdAt?: Date; updatedAt?: Date; createdBy?: string; updatedBy?: string; createdIp?: string; updatedIp?: string; }