diff --git a/Modules.EDMIAPI/EDMI.API.vbproj b/Modules.EDMIAPI/EDMI.API.vbproj index 5dc2fcec..cfec58bb 100644 --- a/Modules.EDMIAPI/EDMI.API.vbproj +++ b/Modules.EDMIAPI/EDMI.API.vbproj @@ -72,6 +72,7 @@ + True diff --git a/Modules.EDMIAPI/My Project/AssemblyInfo.vb b/Modules.EDMIAPI/My Project/AssemblyInfo.vb index f7b314a3..4373aa8d 100644 --- a/Modules.EDMIAPI/My Project/AssemblyInfo.vb +++ b/Modules.EDMIAPI/My Project/AssemblyInfo.vb @@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices ' übernehmen, indem Sie "*" eingeben: ' - + diff --git a/Modules.EDMIAPI/Rights.vb b/Modules.EDMIAPI/Rights.vb new file mode 100644 index 00000000..dc6ce6bf --- /dev/null +++ b/Modules.EDMIAPI/Rights.vb @@ -0,0 +1,7 @@ +Public Class Rights + Public Enum AccessRight + VIEW_ONLY = 1 + VIEW_EXPORT = 2 + FULL = 4 + End Enum +End Class