@mbc-cqrs-serverless/survey-template
Version:
7 lines (6 loc) • 305 B
TypeScript
import { CommandDto } from '@mbc-cqrs-serverless/core';
import { SurveyTemplateAttributes } from './survey-template-attributes.dto';
export declare class SurveyTemplateCommandDto extends CommandDto {
attributes: SurveyTemplateAttributes;
constructor(partial: Partial<SurveyTemplateCommandDto>);
}