/* Options: Date: 2025-09-07 12:34:53 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: OldFiles.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/files/{Path*}") // @Route("/OldFiles") class OldFiles implements IConvertible, IPost { String? path; OldFiles({this.path}); OldFiles.fromJson(Map json) { fromMap(json); } fromMap(Map json) { path = json['path']; return this; } Map toJson() => { 'path': path }; getTypeName() => "OldFiles"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'account.servicestack.net', types: { 'OldFiles': TypeInfo(TypeOf.Class, create:() => OldFiles()), });