26 lines
413 B
VB.net
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
|