/* Options: Date: 2025-06-13 07:14:22 SwiftVersion: 5.0 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws.jimsnwa.com //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(){} }