12 lines
348 B
C#
12 lines
348 B
C#
namespace EnvelopeGenerator.Web
|
|
{
|
|
public enum MessageKey
|
|
{
|
|
ServiceOutputNullError,
|
|
UnexpectedError,
|
|
FailedToSendAccessCode,
|
|
WrongEnvelopeReceiverId, //the value should be about URL (like URL is not existing) as a part of security.
|
|
DataIntegrityError,
|
|
NonDecodableEnvelopeReceiverId
|
|
}
|
|
} |