(* Options: Date: 2025-06-13 07:30:21 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws.jimsnwa.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: RecoveryUsersRQ.* //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 open System.IO type Lenguajes = | ES = 0 | PT = 1 | EN = 2 [] type RecoveryUsersRS() = member val Res:String = null with get,set member val ErrorMessage:String = null with get,set [] [] type RecoveryUsersRQ() = interface IReturn member val Login:String = null with get,set member val Code:String = null with get,set member val Password:String = null with get,set member val Type:String = null with get,set member val Lenguaje:Lenguajes = new Lenguajes() with get,set