refactor(security): move LdapAuthService into OtOpcUa.Security library

This commit is contained in:
Joseph Doherty
2026-05-26 04:35:42 -04:00
parent f35925b57e
commit 567b8cac1d
5 changed files with 5 additions and 5 deletions
@@ -0,0 +1,6 @@
namespace ZB.MOM.WW.OtOpcUa.Security.Ldap;
public interface ILdapAuthService
{
Task<LdapAuthResult> AuthenticateAsync(string username, string password, CancellationToken ct = default);
}