24 lines
443 B
C#
24 lines
443 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 string _filePath;
|
|
public string FilePath
|
|
{
|
|
get { return _filePath; }
|
|
set { SetProperty(ref _filePath, value); }
|
|
}
|
|
}
|
|
}
|