/* Options: Date: 2024-05-17 17:54:15 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: HelloWithRoute.* //ExcludeTypes: //DefaultImports: */ export class HelloWithRouteResponse { public result: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/helloroute") export class HelloWithRoute implements IReturn { public name: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'HelloWithRoute'; } public getMethod() { return 'POST'; } public createResponse() { return new HelloWithRouteResponse(); } }