18f93d72bb
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
11 lines
344 B
C#
11 lines
344 B
C#
namespace ZB.MOM.WW.OtOpcUa.Admin.Security;
|
|
|
|
/// <summary>Outcome of an LDAP bind attempt. <see cref="Roles"/> is the mapped-set of Admin roles.</summary>
|
|
public sealed record LdapAuthResult(
|
|
bool Success,
|
|
string? DisplayName,
|
|
string? Username,
|
|
IReadOnlyList<string> Groups,
|
|
IReadOnlyList<string> Roles,
|
|
string? Error);
|