Jonathan Jenne c9bd8da4a6 jj
2020-09-11 15:56:50 +02:00

10 lines
272 B
VB.net

Public Class ProductVersion
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