11 lines
301 B
VB.net
11 lines
301 B
VB.net
''' <summary>
|
|
''' This module is intended for often used constants and datastructures
|
|
''' Therefor it is important that this module does not have any dependencies on other modules!!
|
|
''' </summary>
|
|
Namespace Constants
|
|
Public Enum NamedDatabase
|
|
ECM
|
|
IDB
|
|
End Enum
|
|
End Namespace
|