/* Options: Date: 2025-07-17 23:38:34 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SiteContentGetReq.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/content/{Country}/{Lang}") // @Route("/content/{Preview}/{Country}/{Lang}") export class SiteContentGetReq implements IReturn { public country: string; public lang: string; public preview: string; public environment: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SiteContentGetReq'; } public getMethod() { return 'GET'; } public createResponse() { return new Array(); } }