/* Options: Date: 2026-01-27 18:42:13 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://buildmax.org //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetStarted.* //ExcludeTypes: //DefaultImports: */ export class GetStartedResponse { public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/started") export class GetStarted implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetStarted'; } public getMethod() { return 'GET'; } public createResponse() { return new GetStartedResponse(); } }