Prepare Rightsmanagement in DocumentResults

This commit is contained in:
Jonathan Jenne
2020-12-18 16:26:39 +01:00
parent ac71352c24
commit 1e3f508b1f
9 changed files with 52 additions and 99 deletions

View File

@@ -3,6 +3,7 @@
Public Class Environment
Public User As State.UserState
Public Settings As State.SettingsState
Public Service As State.ServiceState
Public Database As MSSQLServer
Public DatabaseIDB As MSSQLServer
Public Modules As Dictionary(Of String, State.ModuleState)

View File

@@ -1,6 +1,8 @@
Namespace State
Public Class ServiceState
Public Property Online As Boolean = True
Public Property LastChecked As DateTime = DateTime.Now
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