Add ReceiverTFA constant to AuthPolicy class

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.
This commit is contained in:
2026-02-03 16:10:14 +01:00
parent eb345a0e4d
commit c6c8747d23

View File

@@ -4,5 +4,6 @@ namespace EnvelopeGenerator.Domain.Constants
{
public const string SenderOrReceiver = nameof(SenderOrReceiver) + nameof(AuthPolicy);
public const string Receiver = nameof(Receiver) + nameof(AuthPolicy);
public const string ReceiverTFA = nameof(ReceiverTFA) + nameof(AuthPolicy);
}
}