jj: filewatcher

This commit is contained in:
Jonathan Jenne
2019-02-06 15:31:22 +01:00
parent a1c96731ef
commit fedc45a88b
5 changed files with 174 additions and 72 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