(* Options: Date: 2026-01-30 03:27:38 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://auth-sandbox.migrantleap.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: PreLogin.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace MigrantLeap.Auth.v1.Models open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] [] type ResponseStatus() = [] member val StatusCode:Int32 = new Int32() with get,set [] member val Message:String = null with get,set [] member val StackTrace:String = null with get,set [] member val Errors:ResizeArray = new ResizeArray() with get,set [] member val Meta:Dictionary = new Dictionary() with get,set [] type BaseResponse() = member val ResponseStatus:ResponseStatus = null with get,set [] type PreLoginResponse() = inherit BaseResponse() [] [] [] type PreLogin() = interface IReturn member val Email:String = null with get,set member val Password:String = null with get,set