UNPKG

@mbc-cqrs-serverless/core

Version:
16 lines (15 loc) 380 B
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>; }