diff --git a/Delivery/Models/ConfirmEmail.cs b/Delivery/Models/ConfirmEmail.cs index 24bfce6..c2df70e 100644 --- a/Delivery/Models/ConfirmEmail.cs +++ b/Delivery/Models/ConfirmEmail.cs @@ -2,5 +2,6 @@ namespace Delivery.Models; public class ConfirmEmail { - + public string UserId { get; set; } + public string Token { get; set; } } \ No newline at end of file diff --git a/Delivery/Models/ForgotPassword.cs b/Delivery/Models/ForgotPassword.cs index 304233d..bb94250 100644 --- a/Delivery/Models/ForgotPassword.cs +++ b/Delivery/Models/ForgotPassword.cs @@ -2,5 +2,5 @@ namespace Delivery.Models; public class ForgotPassword { - + public string Email { get; set; } } \ No newline at end of file diff --git a/Delivery/Models/ResendConfirmationEmail.cs b/Delivery/Models/ResendConfirmationEmail.cs index c898907..bae849c 100644 --- a/Delivery/Models/ResendConfirmationEmail.cs +++ b/Delivery/Models/ResendConfirmationEmail.cs @@ -2,5 +2,5 @@ namespace Delivery.Models; public class ResendConfirmationEmail { - + public string Email { get; set; } } \ No newline at end of file diff --git a/Delivery/Models/ResetPassword.cs b/Delivery/Models/ResetPassword.cs index 1c6223f..1ee8845 100644 --- a/Delivery/Models/ResetPassword.cs +++ b/Delivery/Models/ResetPassword.cs @@ -2,5 +2,7 @@ namespace Delivery.Models; public class ResetPassword { - + public string UserId { get; set; } + public string Token { get; set; } + public string NewPassword { get; set; } } \ No newline at end of file