Files
bodyshop-uploader/BodyshopUploader/Models/DTO_QueueItem.cs
2020-01-17 11:03:11 -08:00

31 lines
604 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BodyshopUploader.Models
{
public class DTO_QueueItem : DTO_Base
{
public DTO_QueueItem()
{
}
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); }
}
}
}