Jonathan Jenne b63655b212 06-07-2023
2023-07-06 14:24:30 +02:00

23 lines
555 B
VB.net

Imports DigitalData.Modules.Base
Public Class Receiver
Public Property Id As Integer
Public Property Name As String
Public Property Company As String = ""
Public Property JobTitle As String = ""
Public Property Email As String
Public ReadOnly Property Signature As String
Get
Return StringEx.GetChecksum(Email.ToUpper)
End Get
End Property
Public Property Sequence As Integer = 0
Public Property PrivateMessage As String = ""
Public Property AccessCode As String = ""
End Class