/* Options: Date: 2024-05-02 16:43:12 Version: 8.13 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://techstacks.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetPageStats.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface IGet { } export class GetPageStatsResponse { public type: string; public slug: string; public viewCount: number; public favCount: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/pagestats/{Type}/{Slug}") export class GetPageStats implements IReturn, IGet { public type: string; public slug: string; public id?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetPageStats'; } public getMethod() { return 'GET'; } public createResponse() { return new GetPageStatsResponse(); } }