/* Options: Date: 2026-02-22 05:35:10 Version: 10.06 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(); } }