mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-04-19 12:08:12 +02:00
10 lines
316 B
C#
Executable File
10 lines
316 B
C#
Executable File
using DotBased.AspNet.Authority.Managers;
|
|
using DotBased.AspNet.Authority.Models.Authority;
|
|
using DotBased.AspNet.Authority.Monads;
|
|
|
|
namespace DotBased.AspNet.Authority.Validators;
|
|
|
|
public interface IUserValidator
|
|
{
|
|
public Task<ValidationResult> ValidateUserAsync(AuthorityManager manager, AuthorityUser user);
|
|
} |