/* Options: Date: 2026-05-08 19:18:36 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://tanchinhdo-api-sandbox.adnx.vn //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetSystemFeatureRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class BaseResponse implements IResponseRequest { public code: number; public message?: string; public data?: SystemFeature; public constructor(init?: Partial>) { (Object as any).assign(this, init); } } // @Route("/system-feature", "GET") export class GetSystemFeatureRequest implements IReturn> { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetSystemFeatureRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new BaseResponse(); } }