13 lines
294 B
VB.net
13 lines
294 B
VB.net
Namespace Winline
|
|
Public Class Contact
|
|
Public Property Id As Integer
|
|
Public Property Number As String
|
|
Public Property Name As String
|
|
|
|
Public Overrides Function ToString() As String
|
|
Return Name
|
|
End Function
|
|
End Class
|
|
|
|
End Namespace
|