DotBased/DotBased.AspNet.Authority/Validators/IPasswordValidator.cs

10 lines
360 B
C#
Raw Normal View History

using DotBased.AspNet.Authority.Managers;
using DotBased.AspNet.Authority.Models.Authority;
2024-12-25 22:50:04 +01:00
using DotBased.AspNet.Authority.Models.Validation;
namespace DotBased.AspNet.Authority.Validators;
public interface IPasswordValidator
{
public Task<ValidationResult> ValidatePasswordAsync(AuthorityUserManager userManager, AuthorityUser user, string password);
}