This commit is contained in:
Jonathan Jenne
2020-09-11 15:56:50 +02:00
parent 614b415a98
commit c9bd8da4a6
8 changed files with 228 additions and 82 deletions

View File

@@ -1,4 +1,9 @@
Public Class ProductVersion
Public Guid As Integer
Public Name As String
Public Property Id As Integer
Public Property Name As String
Public Property Part As Integer
Public Overrides Function ToString() As String
Return $"{Id.ToString.PadLeft(2, "0")} - {Name}"
End Function
End Class