/* Options: Date: 2024-05-03 04:09:17 Version: 8.13 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://techstacks.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: Ping.* //ExcludeTypes: //DefaultImports: */ export interface IGet { } // @Route("/ping") export class Ping implements IGet { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'Ping'; } public getMethod() { return 'GET'; } public createResponse() {} }