Added fetching for Shop Region + OPCODE decoding.

This commit is contained in:
Patrick Fic
2020-01-30 17:19:07 -08:00
parent b7c8aef9e5
commit fc52804362
5 changed files with 96 additions and 23 deletions

View File

@@ -48,5 +48,12 @@ namespace BodyshopUploader.Models
get { return _associationActive; }
set { SetProperty(ref _associationActive, value); }
}
private string _regionConfig;
[JsonProperty("region_config")]
public string RegionConfig
{
get { return _regionConfig; }
set { SetProperty(ref _regionConfig, value); }
}
}
}