/* Options: Date: 2025-12-06 13:02:26 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: UserCurrentRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class BaseResponse implements IResponseRequest { public code: number; public message?: string; public data?: CurrentUserResponse; public constructor(init?: Partial>) { (Object as any).assign(this, init); } } // @Route("/users/current", "Get") export class UserCurrentRequest implements IReturn> { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UserCurrentRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new BaseResponse(); } }