﻿Imports Microsoft.VisualBasic

Public Class FileDetails

    Private _id As Integer
    Private _jobId As Integer
    Private _customerId As Integer
    Private _storeId As Integer
    Private _fileName As String
    Private _fileSize As Double
    Private _emailSent As String
    Private _ftpSent As String
    Private _dateTime As DateTime
    Private _uploadMethod As String
    Private _needDownload As String
    Private _serverLocation As String
    Private _downloadId As String
    Private _newFileName As String

    Public Sub FileDetails()
    End Sub

    Public Property Id() As Integer
        Get
            Return _id
        End Get
        Set(ByVal value As Integer)
            _id = value
        End Set
    End Property
    Public Property JobId() As Integer
        Get
            Return _jobId
        End Get
        Set(ByVal value As Integer)
            _jobId = value
        End Set
    End Property
    Public Property CustomerId() As Integer
        Get
            Return _customerId
        End Get
        Set(ByVal value As Integer)
            _customerId = value
        End Set
    End Property
    Public Property StoreId() As Integer
        Get
            Return _storeId
        End Get
        Set(ByVal value As Integer)
            _storeId = value
        End Set
    End Property
    Public Property FileName() As String
        Get
            Return _fileName
        End Get
        Set(ByVal value As String)
            _fileName = value
        End Set
    End Property
    Public Property FileSize() As Double
        Get
            Return _fileSize
        End Get
        Set(ByVal value As Double)
            _fileSize = value
        End Set
    End Property
    Public Property EmailSent() As String
        Get
            Return _emailSent
        End Get
        Set(ByVal value As String)
            _emailSent = value
        End Set
    End Property
    Public Property FtpSent() As String
        Get
            Return _ftpSent
        End Get
        Set(ByVal value As String)
            _ftpSent = value
        End Set
    End Property
    Public Property DateTime() As DateTime
        Get
            Return _dateTime
        End Get
        Set(ByVal value As DateTime)
            _dateTime = value
        End Set
    End Property
    Public Property UploadMethod() As String
        Get
            Return _uploadMethod
        End Get
        Set(ByVal value As String)
            _uploadMethod = value
        End Set
    End Property
    Public Property NeedDownload() As String
        Get
            Return _needDownload
        End Get
        Set(ByVal value As String)
            _needDownload = value
        End Set
    End Property
    Public Property ServerLocation() As String
        Get
            Return _serverLocation
        End Get
        Set(ByVal value As String)
            _serverLocation = value
        End Set
    End Property
    Public Property DownloadId() As String
        Get
            Return _downloadId
        End Get
        Set(ByVal value As String)
            _downloadId = value
        End Set
    End Property
    Public Property NewFileName() As String
        Get
            Return _newFileName
        End Get
        Set(ByVal value As String)
            _newFileName = value
        End Set
    End Property

End Class
