/* Options: Date: 2026-02-10 07:39:57 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: WorkflowStatisticsRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class LeftMenuItem { public id: number; public name: string; public count: number; public isParty: boolean; public level1ParentId: number; public level2ParentId: number; public level: number; public type: string; public key?: string; // @Ignore() public children: LeftMenuItem[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class WorkflowStatisticsResponse { public code: number; public message: string; public data: LeftMenuItem[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/workflow/statistics", "GET") export class WorkflowStatisticsRequest implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'WorkflowStatisticsRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new WorkflowStatisticsResponse(); } }