17 lines
286 B
VB.net
17 lines
286 B
VB.net
Public Class Constants
|
|
Public Const COLUMN_GUID = "GUID"
|
|
|
|
Public Enum XmlFunction
|
|
GLN = 1
|
|
EAN = 2
|
|
End Enum
|
|
|
|
Public Enum ColumnType As Integer
|
|
[String]
|
|
[Integer]
|
|
[Date]
|
|
[Boolean]
|
|
[Decimal]
|
|
End Enum
|
|
End Class
|