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

10 lines
271 B
VB.net

Public Class ProductGroup
Public Property Id As Integer
Public Property Vendor As String
Public Property Name As String
Public Overrides Function ToString() As String
Return $"{Id.ToString.PadLeft(2, "0")} - {Name}"
End Function
End Class