mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-01-19 02:24:19 +01:00
9 lines
304 B
C#
9 lines
304 B
C#
using DotBased.AspNet.Authority.Models.Validation;
|
|
using DotBased.AspNet.Authority.Services;
|
|
|
|
namespace DotBased.AspNet.Authority.Validators;
|
|
|
|
public interface IPasswordValidator<TUser>
|
|
{
|
|
public Task<ValidationResult> ValidatePasswordAsync(AuthorityUserManager<TUser> userManager, string password);
|
|
} |