/* Options: Date: 2026-09-02 15:48:43 Version: 10.09 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RootPathRoutes.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; 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()), });