/* Options: Date: 2025-01-08 03:10:34 Version: 8.53 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazordiffusion.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: KamalUp.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface IGet { } export class KamalUpResponse { public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/up") export class KamalUp implements IReturn, IGet { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'KamalUp'; } public getMethod() { return 'GET'; } public createResponse() { return new KamalUpResponse(); } }