10 lines
272 B
VB.net
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
|