This commit is contained in:
Jonathan Jenne
2022-01-21 15:51:14 +01:00
parent 408dacf1b5
commit 0fa654bda0
6 changed files with 64 additions and 27 deletions

View File

@@ -65,7 +65,8 @@
<Import Include="System.Threading.Tasks" />
</ItemGroup>
<ItemGroup>
<Compile Include="NamedDatabase.vb" />
<Compile Include="Database\Enums.vb" />
<Compile Include="IDB\Database.vb" />
<Compile Include="My Project\AssemblyInfo.vb" />
<Compile Include="My Project\Application.Designer.vb">
<AutoGen>True</AutoGen>

View File

@@ -0,0 +1,8 @@
Namespace Database
Module Enums
Public Enum NamedDatabase
ECM
IDB
End Enum
End Module
End Namespace

View File

@@ -0,0 +1,15 @@
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

View File

@@ -1,10 +0,0 @@
''' <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