diff --git a/zero.Core/Entities/User/BackofficeUser.cs b/zero.Core/Entities/User/BackofficeUser.cs index d2f0b8c0..6ebc0ccb 100644 --- a/zero.Core/Entities/User/BackofficeUser.cs +++ b/zero.Core/Entities/User/BackofficeUser.cs @@ -47,14 +47,6 @@ namespace zero.Core.Entities - /// - public string PasswordResetToken { get; set; } - - /// - public DateTimeOffset? PasswordResetTokenExpirationDate { get; set; } - - - /// public int AccessFailedCount { get; set; } diff --git a/zero.Core/Identity/IIdentityUser.cs b/zero.Core/Identity/IIdentityUser.cs index e89ac258..b45c9ee0 100644 --- a/zero.Core/Identity/IIdentityUser.cs +++ b/zero.Core/Identity/IIdentityUser.cs @@ -47,18 +47,6 @@ namespace zero.Core.Identity - /// - /// A hash which is used to validate a password-change request - /// - string PasswordResetToken { get; set; } - - /// - /// The date when the current password-reset hash expires - /// - DateTimeOffset? PasswordResetTokenExpirationDate { get; set; } - - - /// /// Number of times sign in failed. ///