Enhancement for issue #76

This commit is contained in:
Michael J. Seiferling
2017-06-14 10:16:29 -06:00
parent 1f291bbcd8
commit aa3237d0fa
14 changed files with 189 additions and 31 deletions
+22
View File
@@ -0,0 +1,22 @@
Public Class clsSavedPath
Private sPathName As String = String.Empty
Private sPath As String = String.Empty
Property PathName As String
Get
Return sPathName
End Get
Set(value As String)
sPathName = value
End Set
End Property
Property Path As String
Get
Return sPath
End Get
Set(value As String)
sPath = value
End Set
End Property
End Class