Projektdateien hinzufügen.

This commit is contained in:
Jonathan Jenne
2020-08-25 10:43:21 +02:00
parent 48c4b42d41
commit 614b415a98
29 changed files with 2444 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
Public Class Article
Public VendorId As String
Public ProductGroupId As String
Public ProductVersionId As String
Public RunningNumber As String
Public AddedWho As String
Public ChangedWho As String
Public AddedWhen As Date
Public ChangedWhen As Date
End Class

View File

@@ -0,0 +1,11 @@
Public Class ProductGroup
Public Guid As Integer
Public Name As String
Public NickName As String
Public Property Versions As List(Of ProductVersion)
Public Sub New()
Versions = New List(Of ProductVersion)
End Sub
End Class

View File

@@ -0,0 +1,4 @@
Public Class ProductVersion
Public Guid As Integer
Public Name As String
End Class

View File

@@ -0,0 +1,5 @@
Public Class Vendor
Public Guid As Integer
Public Id As String
Public Name As String
End Class