diff --git a/src/CalcViewModel/CalcViewModel.vcxproj b/src/CalcViewModel/CalcViewModel.vcxproj
index e2e98ab9..8d1f8a20 100644
--- a/src/CalcViewModel/CalcViewModel.vcxproj
+++ b/src/CalcViewModel/CalcViewModel.vcxproj
@@ -344,6 +344,7 @@
+
diff --git a/src/CalcViewModel/CalcViewModel.vcxproj.filters b/src/CalcViewModel/CalcViewModel.vcxproj.filters
index d05aca0b..4f43baf3 100644
--- a/src/CalcViewModel/CalcViewModel.vcxproj.filters
+++ b/src/CalcViewModel/CalcViewModel.vcxproj.filters
@@ -213,6 +213,9 @@
Common
+
+ DataLoaders
+
diff --git a/src/CalcViewModel/DataLoaders/CurrencyHttpClient.cpp b/src/CalcViewModel/DataLoaders/CurrencyHttpClient.cpp
index 7a2658a3..9af30e01 100644
--- a/src/CalcViewModel/DataLoaders/CurrencyHttpClient.cpp
+++ b/src/CalcViewModel/DataLoaders/CurrencyHttpClient.cpp
@@ -1,8 +1,9 @@
-// Copyright (c) Microsoft Corporation. All rights reserved.
+// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#include "pch.h"
#include "CurrencyHttpClient.h"
+#include "DataLoaderConstants.h"
using namespace CalculatorApp::DataLoaders;
using namespace Platform;
@@ -10,9 +11,6 @@ using namespace std;
using namespace Windows::Foundation;
using namespace Windows::Web::Http;
-static constexpr auto sc_MetadataUriLocalizeFor = L"https://go.microsoft.com/fwlink/?linkid=2041093&localizeFor=";
-static constexpr auto sc_RatiosUriRelativeTo = L"https://go.microsoft.com/fwlink/?linkid=2041339&localCurrency=";
-
CurrencyHttpClient::CurrencyHttpClient() :
m_client(ref new HttpClient()),
m_responseLanguage(L"en-US")
diff --git a/src/CalcViewModel/DataLoaders/DataLoaderConstants.h b/src/CalcViewModel/DataLoaders/DataLoaderConstants.h
new file mode 100644
index 00000000..dbfd579d
--- /dev/null
+++ b/src/CalcViewModel/DataLoaders/DataLoaderConstants.h
@@ -0,0 +1,14 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+#pragma once
+
+namespace CalculatorApp
+{
+ namespace DataLoaders
+ {
+ static constexpr auto sc_MetadataUriLocalizeFor = L"";
+ static constexpr auto sc_RatiosUriRelativeTo = L"";
+ static constexpr auto sc_ApiKey = L"";
+ }
+}