Baget GDPicture

This commit is contained in:
Developer01
2025-03-28 15:27:18 +01:00
parent 8c829d490f
commit d4ce8e2891
24 changed files with 1428 additions and 26 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