/* Options: Date: 2026-04-18 00:17:41 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://qlcn-api.vsmlab.vn //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteWorkflowRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/workflow/{Id}", "DELETE") export class DeleteWorkflowRequest implements IReturn { public id: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DeleteWorkflowRequest'; } public getMethod() { return 'DELETE'; } public createResponse() { return false; } }