/* Options: Date: 2025-06-07 20:05:41 Version: 8.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://soluser-recaudo.sgsas.co //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EmpresasUsuarioRQ.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/Usuarios/Empresas") class EmpresasUsuarioRQ implements IReturn>, IConvertible, IPost { String? Usuario; int? CodSistema; EmpresasUsuarioRQ({this.Usuario,this.CodSistema}); EmpresasUsuarioRQ.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Usuario = json['Usuario']; CodSistema = json['CodSistema']; return this; } Map toJson() => { 'Usuario': Usuario, 'CodSistema': CodSistema }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "EmpresasUsuarioRQ"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'soluser_recaudo.sgsas.co', types: { 'EmpresasUsuarioRQ': TypeInfo(TypeOf.Class, create:() => EmpresasUsuarioRQ()), });