(* Options: Date: 2026-02-05 02:03:32 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://portal-api.migrantleap.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: LoginRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace MigrantLeap.PortalBackend.Models open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type LoginResponse() = member val Language:String = null with get,set member val ResponseCode:Int32 = new Int32() with get,set member val ResponseMessage:String = null with get,set [] [] type LoginRequest() = interface IReturn member val Username:String = null with get,set member val Password:String = null with get,set