20 lines
549 B
VB.net
20 lines
549 B
VB.net
Public Class ImportFile
|
|
Public Property FilePath As String
|
|
Public Property FilePathOriginal As String
|
|
Public Property FilePathWindream As String
|
|
Public Property FileInfo As IO.FileInfo
|
|
|
|
Public Property IndexValues As New List(Of IndexItem)
|
|
|
|
Public Class IndexItem
|
|
Public Value As String
|
|
Public IndexName As String
|
|
End Class
|
|
|
|
Public Sub New(pFilePath As String)
|
|
_FilePathOriginal = pFilePath
|
|
_FilePath = pFilePath
|
|
_FileInfo = New IO.FileInfo(pFilePath)
|
|
End Sub
|
|
End Class
|