Rename organizationName field

This commit is contained in:
Jared Goodwin 2020-03-06 17:50:07 -08:00
parent 23713dc505
commit 799d7f0dce

View File

@ -24,7 +24,7 @@ namespace Remotely.Agent.Installer.Win.ViewModels
private bool isReadyState = true;
private bool isServiceInstalled;
private string organizationName;
private string organizationID;
private int progress;
@ -109,11 +109,11 @@ namespace Remotely.Agent.Installer.Win.ViewModels
{
get
{
return organizationName;
return organizationID;
}
set
{
organizationName = value;
organizationID = value;
FirePropertyChanged(nameof(OrganizationID));
}
}