blob: f0fb59f19f270b0abbba0b13fd892a9c919ef9ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
namespace IOL.GreatOffice.Api.Endpoints.Internal.PasswordResetRequests;
public class FulfillResetRequestPayload
{
/// <summary>
/// Id of the password reset request to fulfill
/// </summary>
public Guid Id { get; set; }
/// <summary>
/// New password to set on the relevant account
/// </summary>
public string NewPassword { get; set; }
}
|