/* Options: Date: 2025-12-23 15:11:46 Version: 10.04 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://vue-spa.web-templates.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetWeatherForecast.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IGet { } export class GetWeatherForecast implements IReturn, IGet { public date?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetWeatherForecast'; } public getMethod() { return 'GET'; } public createResponse() { return new Array(); } }