15 lines
247 B
VB.net
15 lines
247 B
VB.net
Public Class Constants
|
|
Public Enum XmlFunction
|
|
GLN = 1
|
|
EAN = 2
|
|
End Enum
|
|
|
|
Public Enum ColumnType As Integer
|
|
[String]
|
|
[Integer]
|
|
[Date]
|
|
[Boolean]
|
|
[Decimal]
|
|
End Enum
|
|
End Class
|