/* Options: Date: 2024-05-16 04:20:15 Version: 6.111 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://sharpscript.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EvaluateScript.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/template/eval") class EvaluateScript implements IConvertible, IPost { String? template; EvaluateScript({this.template}); EvaluateScript.fromJson(Map json) { fromMap(json); } fromMap(Map json) { template = json['template']; return this; } Map toJson() => { 'template': template }; getTypeName() => "EvaluateScript"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'sharpscript.net', types: { 'EvaluateScript': TypeInfo(TypeOf.Class, create:() => EvaluateScript()), });