/* Options: Date: 2026-05-23 14:30:52 Version: 8.81 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://test.servicestack.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RootPathRoutes.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; import 'dart:typed_data'; class RootPathRoutes implements IConvertible, IPost { String? path; RootPathRoutes({this.path}); RootPathRoutes.fromJson(Map json) { fromMap(json); } fromMap(Map json) { path = json['path']; return this; } Map toJson() => { 'path': path }; getTypeName() => "RootPathRoutes"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'test.servicestack.net', types: { 'RootPathRoutes': TypeInfo(TypeOf.Class, create:() => RootPathRoutes()), });