/* Options: Date: 2024-05-17 17:25:40 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: Throw404.* //ExcludeTypes: //DefaultImports: */ // @Route("/throw404") // @Route("/throw404/{Message}") export class Throw404 { public message: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'Throw404'; } public getMethod() { return 'POST'; } public createResponse() {} }