/* Options: Date: 2024-05-16 01:02:14 Version: 6.111 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,dart:typed_data,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; import 'dart:collection'; 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()), });