Renamed AuthorizationPolicies to AuthPolicy and updated all references to use the new naming convention for authorization policy constants. This improves consistency and clarity across the codebase.
9 lines
250 B
C#
9 lines
250 B
C#
namespace EnvelopeGenerator.Domain.Constants
|
|
{
|
|
public static class AuthPolicy
|
|
{
|
|
public const string SenderOrReceiverFullyAuth = "SenderOrReceiverFullyAuth";
|
|
public const string ReceiverFullyAuth = "ReceiverFullyAuth";
|
|
}
|
|
}
|