Added the ReceiverTFA constant to the AuthPolicy class in the EnvelopeGenerator.Domain.Constants namespace. This new constant can be used to represent authentication policies specific to two-factor authentication for receivers.
10 lines
352 B
C#
10 lines
352 B
C#
namespace EnvelopeGenerator.Domain.Constants
|
|
{
|
|
public static class AuthPolicy
|
|
{
|
|
public const string SenderOrReceiver = nameof(SenderOrReceiver) + nameof(AuthPolicy);
|
|
public const string Receiver = nameof(Receiver) + nameof(AuthPolicy);
|
|
public const string ReceiverTFA = nameof(ReceiverTFA) + nameof(AuthPolicy);
|
|
}
|
|
}
|