namespace ZB.MOM.WW.OtOpcUa.Security.Ldap;
public interface ILdapAuthService
{
/// Authenticates a user against the LDAP service.
/// The username to authenticate.
/// The password to verify.
/// A cancellation token.
/// A task that returns the authentication result.
Task AuthenticateAsync(string username, string password, CancellationToken ct = default);
}