jj: add app state

This commit is contained in:
Jonathan Jenne
2019-01-30 15:27:07 +01:00
parent 1ae788f52e
commit 7d691246f5
11 changed files with 90 additions and 50 deletions

View File

@@ -0,0 +1,7 @@
Public Class ModuleState
Public Name As String
Public Sub New(Name As String)
Me.Name = Name
End Sub
End Class