/* Options: Date: 2025-07-18 08:01:47 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: ForgotPasswordRequest.* //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("/forgot-password", "POST")] public partial class ForgotPasswordRequest : IReturn { public virtual string Email { get; set; } } public partial class ForgotPasswordResponse { public virtual int ResponseCode { get; set; } public virtual string ResponseMessage { get; set; } } }