Files
Modules/EDMI_ClientSuite/Settings/UserState.vb
Jonathan Jenne 7d691246f5 jj: add app state
2019-01-30 15:27:07 +01:00

20 lines
518 B
VB.net

Imports System.Threading
''' <summary>
''' Helper Class to hold User State
''' </summary>
Public Class UserState
Public UserName As String
Public MachineName 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