forked from microsoft/app-innovation-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstants.cs
More file actions
20 lines (18 loc) · 778 Bytes
/
Constants.cs
File metadata and controls
20 lines (18 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace ContosoFieldService.Helpers
{
public static class Constants
{
// Backend API
public static string BaseUrl = "__ApiManagementUrl__";
public static string ApiManagementKey = "__ApiManagementKey__";
// Visual Studio App Center
public static string AppCenterIOSKey = "__IOSKey__";
public static string AppCenterAndroidKey = "__AndroidKey__";
public static string AppCenterUWPKey = "__UWPKey__";
// Azure Active Directory B2C
public static string Tenant = "__ADB2CTenant__";
public static string ApplicationId = "__ADB2CApplicationId__";
public static string SignUpAndInPolicy = "__ADB2CSignUpPolicy__";
public static string[] Scopes = { "__ADB2CScopes__" };
}
}