Added the ReceiverOrReceiverTFA constant to the AuthPolicy class in EnvelopeGenerator.Domain.Constants. This constant is defined as nameof(ReceiverOrReceiverTFA) + nameof(AuthPolicy).
15 lines
533 B
C#
15 lines
533 B
C#
namespace EnvelopeGenerator.Domain.Constants
|
|
{
|
|
public static class AuthPolicy
|
|
{
|
|
public const string SenderOrReceiver = nameof(SenderOrReceiver) + nameof(AuthPolicy);
|
|
|
|
public const string ReceiverOrReceiverTFA = nameof(ReceiverOrReceiverTFA) + nameof(AuthPolicy);
|
|
|
|
public const string Sender = nameof(Sender) + nameof(AuthPolicy);
|
|
|
|
public const string Receiver = nameof(Receiver) + nameof(AuthPolicy);
|
|
|
|
public const string ReceiverTFA = nameof(ReceiverTFA) + nameof(AuthPolicy);
|
|
}
|
|
} |