48 lines
917 B
C#
48 lines
917 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BodyshopPartner
|
|
{
|
|
public enum SourceSystem
|
|
{
|
|
Mitchell = 0,
|
|
Audatex = 1,
|
|
CCC = 2
|
|
}
|
|
}
|
|
|
|
namespace BodyshopPartner.Models
|
|
{
|
|
public class DTO_QueueItem : DTO_Base
|
|
{
|
|
public DTO_QueueItem()
|
|
{
|
|
|
|
}
|
|
|
|
private SourceSystem _source;
|
|
public SourceSystem Source
|
|
{
|
|
get { return _source; }
|
|
set { SetProperty(ref _source, value); }
|
|
}
|
|
|
|
private dynamic _job;
|
|
public dynamic Job
|
|
{
|
|
get { return _job; }
|
|
set { SetProperty(ref _job, value); }
|
|
}
|
|
|
|
private string _filePath;
|
|
public string FilePath
|
|
{
|
|
get { return _filePath; }
|
|
set { SetProperty(ref _filePath, value); }
|
|
}
|
|
}
|
|
}
|