/* Options: Date: 2025-01-08 03:22:57 Version: 8.53 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazordiffusion.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: KamalUp.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class KamalUpResponse implements IConvertible { KamalUpResponse(); KamalUpResponse.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; getTypeName() => "KamalUpResponse"; TypeContext? context = _ctx; } // @Route("/up") class KamalUp implements IReturn, IGet, IConvertible { KamalUp(); KamalUp.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => KamalUpResponse(); getResponseTypeName() => "KamalUpResponse"; getTypeName() => "KamalUp"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'blazordiffusion.com', types: { 'KamalUpResponse': TypeInfo(TypeOf.Class, create:() => KamalUpResponse()), 'KamalUp': TypeInfo(TypeOf.Class, create:() => KamalUp()), });