You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
390 B

Public Class Result
Property Text As String
Property Type As Common.Common.JournalEntryType
Public Sub New()
Text = "no text set until now"
Type = Common.Common.JournalEntryType.Information
End Sub
Public Sub New(ByVal text As String, ByVal type As Common.Common.JournalEntryType)
Me.Text = text
Me.Type = type
End Sub
End Class