Filesystem: Clean up

This commit is contained in:
Jonathan Jenne
2020-12-17 13:36:40 +01:00
parent ebf53ea108
commit 99e5675d51
10 changed files with 9 additions and 9 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