/* Options: Date: 2025-09-07 08:46:30 Version: 8.81 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://account.servicestack.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: FallbackForClientRoutes.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/{PathInfo*}") // @Route("/FallbackForClientRoutes") class FallbackForClientRoutes implements IConvertible, IPost { String? pathInfo; FallbackForClientRoutes({this.pathInfo}); FallbackForClientRoutes.fromJson(Map json) { fromMap(json); } fromMap(Map json) { pathInfo = json['pathInfo']; return this; } Map toJson() => { 'pathInfo': pathInfo }; getTypeName() => "FallbackForClientRoutes"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'account.servicestack.net', types: { 'FallbackForClientRoutes': TypeInfo(TypeOf.Class, create:() => FallbackForClientRoutes()), });