namespace IOL.GreatOffice.Api.Endpoints.Internal.PasswordResetRequests; public class FulfillResetRequestPayload { /// /// Id of the password reset request to fulfill /// public Guid Id { get; set; } /// /// New password to set on the relevant account /// public string NewPassword { get; set; } }