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 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