18 lines
265 B
VB.net
18 lines
265 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
|
|
|
|
End Class
|