/* Options: Date: 2026-02-05 02:03:31 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://portal-api.migrantleap.com //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: LoginRequest.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using MigrantLeap.PortalBackend.Models; namespace MigrantLeap.PortalBackend.Models { [Route("/login", "POST")] public partial class LoginRequest : IReturn { public virtual string Username { get; set; } public virtual string Password { get; set; } } public partial class LoginResponse { public virtual string Language { get; set; } public virtual int ResponseCode { get; set; } public virtual string ResponseMessage { get; set; } } }