/* Options: Date: 2025-06-07 18:44:23 SwiftVersion: 5.0 Version: 8.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://soluser-recaudo.sgsas.co //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: ValoresDefectoFormaRQ.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/Utilidades/Formas/ValoresDefecto") public class ValoresDefectoFormaRQ : IReturn, Codable { public typealias Return = ValoresDefectoFormaRS public var idTabla:Int public var parametros:[String:Object] = [:] required public init(){} } public class ValoresDefectoFormaRS : Codable { public var valoresDefecto:[String:Object] = [:] required public init(){} }