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

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); }
}
}
}