Added logging + array based processing.

This commit is contained in:
Patrick Fic
2020-06-01 13:39:33 -07:00
parent db86d0bc55
commit 5c3160321b
8 changed files with 215 additions and 181 deletions

View File

@@ -48,5 +48,12 @@ namespace BodyshopPartner.ViewModels
get { return _activeShop; }
set { SetProperty(ref _activeShop, value); Task.Run(async () => await SetActiveBodyshop()); }
}
private string _httpServerLog = "Status Log\nNewLine\n";
public string HttpServerLog
{
get { return _httpServerLog; }
set { SetProperty(ref _httpServerLog, value); }
}
}
}