Remove State Project

This commit is contained in:
Jonathan Jenne
2021-05-20 16:13:51 +02:00
parent c022872832
commit e53e79b05a
13 changed files with 482 additions and 7 deletions

11
State/ServiceState.vb Normal file
View File

@@ -0,0 +1,11 @@
Imports DigitalData.Modules.EDMI.API
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
Public Property Client As Client = Nothing
End Class
End Namespace