Base: Add Filesystem Classes

This commit is contained in:
Jonathan Jenne
2023-09-05 10:37:19 +02:00
parent 3cb625c921
commit e12b087c94
8 changed files with 940 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
Public Class FileWatcherProperties
Public Property CreatedAt As DateTime
Public Property ChangedAt As DateTime
Public ReadOnly Property HasChanged As Boolean
Public Sub New()
CreatedAt = DateTime.Now
ChangedAt = Nothing
HasChanged = False
End Sub
End Class