2023-09-27 14:06:05 +02:00

26 lines
413 B
VB.net

Public Class Constants
Public Enum EnvelopeStatus
Created = 0
Saved = 1
Sent = 2
End Enum
Public Enum ElementType
Signature = 0
End Enum
Public Enum ElementStatus
Created = 0
End Enum
Public Enum ActionType
Created = 0
End Enum
Public Enum ContractType
Contract = 0
ReadAndSign = 1
End Enum
End Class