﻿Imports Microsoft.VisualBasic

Public Class JobDetails

    Private _jobId As Integer
    Private _customerId As Integer
    Private _storeId As Integer
    Private _jobSettingsList As System.Collections.ArrayList
    Private _fileDetailsList As System.Collections.Generic.List(Of FileDetails)
    Private _jobFileDirectory As String
    Private _fileNameSize As String
    Private _isConvertToPdf As Boolean
    Private _isPreflight As Boolean

    Public Sub JobDetails()
    End Sub

    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 JobSettingsList() As System.Collections.ArrayList
        Get
            Return _jobSettingsList
        End Get
        Set(ByVal value As System.Collections.ArrayList)
            _jobSettingsList = value
        End Set
    End Property
    Public Property FileDetailsList() As System.Collections.Generic.List(Of FileDetails)
        Get
            Return _fileDetailsList
        End Get
        Set(ByVal value As System.Collections.Generic.List(Of FileDetails))
            _fileDetailsList = value
        End Set
    End Property
    Public Property JobFileDirectory() As String
        Get
            Return _jobFileDirectory
        End Get
        Set(ByVal value As String)
            _jobFileDirectory = value
        End Set
    End Property
    Public Property FileNameSize() As String
        Get
            Return _fileNameSize
        End Get
        Set(ByVal value As String)
            _fileNameSize = value
        End Set
    End Property
    Public Property IsConvertToPdf() As Boolean
        Get
            Return _isConvertToPdf
        End Get
        Set(ByVal value As Boolean)
            _isConvertToPdf = value
        End Set
    End Property
    Public Property IsPreflight() As Boolean
        Get
            Return _isPreflight
        End Get
        Set(ByVal value As Boolean)
            _isPreflight = value
        End Set
    End Property

End Class
