/* Options: Date: 2025-09-10 19:01:37 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-optimization.power.dev //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CacheExpireRequest.* //ExcludeTypes: //DefaultImports: */ // @Route("/cache-expire", "POST,GET") export class CacheExpireRequest { public key: string; public isStartsWidth: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'CacheExpireRequest'; } public getMethod() { return 'POST'; } public createResponse() {} }