Monorepo/Modules.ZooFlow/State/ServiceState.vb
2020-12-18 16:26:39 +01:00

8 lines
292 B
VB.net

Namespace State
Public Class ServiceState
Public Property IsOnline As Boolean = False
Public Property IsActive As Boolean = False
Public Property LastChecked As Date = Date.Now
Public Property Address As String = String.Empty
End Class
End Namespace