16 lines
693 B
VB.net
16 lines
693 B
VB.net
|
|
Namespace IDB
|
|
''' <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>
|
|
Module Constants
|
|
Public Const OBJECT_STATE_FILE_ADDED = "File added"
|
|
Public Const OBJECT_STATE_FILE_VERSIONED = "File versioned"
|
|
Public Const OBJECT_STATE_FILE_CHANGED = "File changed"
|
|
Public Const OBJECT_STATE_FILE_DELETED = "File deleted"
|
|
Public Const OBJECT_STATE_METADATA_CHANGED = "Metadata changed"
|
|
Public Const OBJECT_STATE_ATTRIBUTEVALUE_DELETED = "Attributevalue deleted"
|
|
End Module
|
|
End Namespace
|