@mbc-cqrs-serverless/core
Version:
CQRS and event base core
13 lines (12 loc) • 335 B
TypeScript
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;
}