15 lines
377 B
C#
15 lines
377 B
C#
namespace ZB.MOM.WW.MxGateway.Server.Configuration;
|
|
|
|
public sealed record EffectiveLdapConfiguration(
|
|
bool Enabled,
|
|
string Server,
|
|
int Port,
|
|
string Transport,
|
|
bool AllowInsecure,
|
|
string SearchBase,
|
|
string ServiceAccountDn,
|
|
string ServiceAccountPassword,
|
|
string UserNameAttribute,
|
|
string DisplayNameAttribute,
|
|
string GroupAttribute);
|