(* Options: Date: 2025-06-07 10:26:11 Version: 8.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://soluser-recaudo.sgsas.co //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: EjecutaFrameRQ.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Administrador.Modelo.Tipos open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations type Lenguajes = | ES = 0 | PT = 1 | EN = 2 [] type EjecutaFrameRS() = member val DatosConsulta:Dictionary = new Dictionary() with get,set [] [] type EjecutaFrameRQ() = interface IReturn member val IDFrame:Int32 = new Int32() with get,set member val Parametros:Dictionary = new Dictionary() with get,set member val Lenguaje:Lenguajes = new Lenguajes() with get,set