Modules/EDMI_ClientSuite/State/ServiceState.vb
2019-02-18 11:14:02 +01:00

10 lines
194 B
VB.net

Public Class ServiceState
Public Online As Boolean
Public LastChecked As DateTime
Public Sub New()
Online = True
LastChecked = DateTime.Now
End Sub
End Class