/* Options: Date: 2026-06-01 15:02:43 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.imglobal.com/RestApi //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteProject.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/translations/projects", "DELETE") class DeleteProject implements IConvertible, IDelete { List? Ids; DeleteProject({this.Ids}); DeleteProject.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Ids = JsonConverters.fromJson(json['Ids'],'List',context!); return this; } Map toJson() => { 'Ids': JsonConverters.toJson(Ids,'List',context!) }; getTypeName() => "DeleteProject"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.imglobal.com', types: { 'DeleteProject': TypeInfo(TypeOf.Class, create:() => DeleteProject()), });