7 lines
193 B
C#
7 lines
193 B
C#
namespace ZB.MOM.WW.OtOpcUa.Admin.Security;
|
|
|
|
public interface ILdapAuthService
|
|
{
|
|
Task<LdapAuthResult> AuthenticateAsync(string username, string password, CancellationToken ct = default);
|
|
}
|