/* Options: Date: 2026-02-10 07:40:51 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetWorkflowProfileRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface IResponseRequest { code: number; message: string; } export class WorkflowProfileItem { public fileId: number; public title?: string; public documentCode?: string; public fileKey?: string; public fileUrl?: string; public updatedAt?: string; public stepTitle?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetWorkflowProfileResponse implements IResponseRequest { public code: number; public message: string; public data?: WorkflowProfileItem[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/WorkflowStep/profile", "Get") export class GetWorkflowProfileRequest implements IReturn { public workflowId: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetWorkflowProfileRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new GetWorkflowProfileResponse(); } }