monster commit for zoo flow, prepare migration of cw

This commit is contained in:
Jonathan Jenne
2019-09-12 17:06:14 +02:00
parent 13da64c6ad
commit 6b955569f6
88 changed files with 3001 additions and 130 deletions

View File

@@ -1,5 +0,0 @@
Public Class ClassModuleState
Public HasAccess As Boolean
Public IsAdmin As Boolean
Public LoggedIn As Integer
End Class

View File

@@ -1,4 +0,0 @@
Public Class ClassServiceState
Public Property Online As Boolean = True
Public Property LastChecked As DateTime = DateTime.Now
End Class

View File

@@ -1,25 +0,0 @@
Imports System.Threading
''' <summary>
''' Helper Class to hold User State
''' </summary>
Public Class ClassUserState
Public UserId As Integer
Public UserName As String
Public Surname As String
Public GivenName As String
Public ShortName As String
Public Email As String
Public MachineName As String
Public DateFormat As String
Public Language As String
''' <summary>
''' Initialize user object with values that can be read from the environment
''' </summary>
Public Sub New()
Language = Thread.CurrentThread.CurrentCulture.Name
UserName = Environment.UserName
MachineName = Environment.MachineName
End Sub
End Class