/* Options: Date: 2025-01-08 03:05:42 Version: 8.53 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazordiffusion.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteTodo.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/todos/{Id}", "DELETE") class DeleteTodo implements IReturnVoid, IDelete, IConvertible { int? id; DeleteTodo({this.id}); DeleteTodo.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; return this; } Map toJson() => { 'id': id }; createResponse() {} getTypeName() => "DeleteTodo"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'blazordiffusion.com', types: { 'DeleteTodo': TypeInfo(TypeOf.Class, create:() => DeleteTodo()), });