Add Variables & Config Modules

This commit is contained in:
Jonathan Jenne
2018-09-07 16:32:21 +02:00
parent 49ee0a9374
commit 6f2dc105d3
22 changed files with 1028 additions and 0 deletions

9
Variables/CurrentUser.vb Normal file
View File

@@ -0,0 +1,9 @@
Public Class CurrentUser
Public USER_GUID As String
Public USER_NAME As String
Public ReadOnly USER_LOGIN As DateTime
Public Sub New()
USER_LOGIN = DateTime.Now
End Sub
End Class