12 lines
260 B
VB.net
12 lines
260 B
VB.net
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
|