Added base decoding logic + notification logic.

This commit is contained in:
Patrick Fic
2020-01-17 11:03:11 -08:00
parent 572f409176
commit 3357a8a564
11 changed files with 659 additions and 11 deletions

View File

@@ -13,6 +13,13 @@ namespace BodyshopUploader.Models
}
private dynamic _job;
public dynamic Job
{
get { return _job; }
set { SetProperty(ref _job, value); }
}
private string _filePath;
public string FilePath
{