Imports System.Runtime.Serialization Namespace Methods Public Class FileProperties ''' ''' Absolute filename of the file to be imported ''' Public Property FileName As String ''' ''' Creation date of the original file from the filesystem ''' Public Property FileCreatedAt As String ''' ''' Modification date of the original file from the filesystem ''' Public Property FileChangedAt As String ''' ''' Date for which the file should be show as imported ''' Public Property FileImportedAt As Date ''' ''' The byte array representing the file contents ''' Public Property FileContents As Byte() ''' ''' The SHA256 Hash of the file contents ''' Public Property FileChecksum As String End Class End Namespace