20 lines
1.3 KiB
C#
20 lines
1.3 KiB
C#
namespace EnvelopeGenerator.Application
|
|
{
|
|
public static class Key
|
|
{
|
|
public static readonly string InnerServiceError = nameof(InnerServiceError);
|
|
public static readonly string EnvelopeNotFound = nameof(EnvelopeNotFound);
|
|
public static readonly string EnvelopeReceiverNotFound = nameof(EnvelopeReceiverNotFound);
|
|
public static readonly string AccessCodeNull = nameof(AccessCodeNull);
|
|
public static readonly string WrongAccessCode = nameof(WrongAccessCode);
|
|
public static readonly string DataIntegrityIssue = nameof(DataIntegrityIssue);
|
|
public static readonly string SecurityBreachOrDataIntegrity = nameof(SecurityBreachOrDataIntegrity);
|
|
public static readonly string PossibleDataIntegrityIssue = nameof(PossibleDataIntegrityIssue);
|
|
public static readonly string SecurityBreach = nameof(SecurityBreach);
|
|
public static readonly string PossibleSecurityBreach = nameof(PossibleSecurityBreach);
|
|
public static readonly string WrongEnvelopeReceiverId = nameof(WrongEnvelopeReceiverId);
|
|
public static readonly string EnvelopeOrReceiverNonexists = nameof(EnvelopeOrReceiverNonexists);
|
|
public static readonly string PhoneNumberNonexists = nameof(PhoneNumberNonexists);
|
|
public static readonly string Default = nameof(Default);
|
|
}
|
|
} |