Projektdateien hinzufügen.

This commit is contained in:
2023-02-14 15:38:31 +01:00
parent 15086b808b
commit 877f50f1eb
27 changed files with 3098 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
Imports Newtonsoft.Json
Public Class cTEST
Public Property Field1 As String
Public Property Field2 As String
' Public Property array As cTEST_array()
Public Property array As New List(Of cTEST_array) 'With {.id = Field1}
'<JsonProperty("cTEST_varray")>
Public Structure cTEST_array
'Public Property id As Integer
Dim Field1 As String
Dim Field2 As String
End Structure
' Public Property num Acces As String
'Public Enum AccesMode
' VIEWONLY
' SHAREDACCESS
' EXCLUSIVE
' 'PRIVATE
'End Enum
End Class