mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-01-19 02:24:19 +01:00
10 lines
331 B
C#
10 lines
331 B
C#
using DotBased.AspNet.Authority.Managers;
|
|
using DotBased.AspNet.Authority.Models.Authority;
|
|
using DotBased.AspNet.Authority.Models.Validation;
|
|
|
|
namespace DotBased.AspNet.Authority.Validators;
|
|
|
|
public interface IUserValidator
|
|
{
|
|
public Task<ValidationResult> ValidateUserAsync(AuthorityUserManager manager, AuthorityUser user);
|
|
} |