Implemented Queues and folder monitors.
This commit is contained in:
23
BodyshopUploader/Models/DTO_QueueItem.cs
Normal file
23
BodyshopUploader/Models/DTO_QueueItem.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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 string _filePath;
|
||||
public string FilePath
|
||||
{
|
||||
get { return _filePath; }
|
||||
set { SetProperty(ref _filePath, value); }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user