rename project to ClientSuite, add application timer

This commit is contained in:
Jonathan Jenne
2019-02-18 11:14:02 +01:00
parent a2f4c06492
commit bc7605bdcf
40 changed files with 120 additions and 1478 deletions

View File

@@ -0,0 +1,9 @@
Public Class ServiceState
Public Online As Boolean
Public LastChecked As DateTime
Public Sub New()
Online = True
LastChecked = DateTime.Now
End Sub
End Class