@mbc-cqrs-serverless/core
Version:
CQRS and event base core
16 lines (15 loc) • 380 B
TypeScript
import { CommandInputModel } from './command-input-model.interface';
export declare class CommandDto implements CommandInputModel {
pk: string;
sk: string;
id: string;
code: string;
name: string;
version: number;
tenantCode: string;
type: string;
seq?: number;
ttl?: number;
isDeleted?: boolean;
attributes?: Record<string, any>;
}