26 lines
880 B
C#
26 lines
880 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BodyshopPartner.Utils
|
|
{
|
|
public static class AppMetaData
|
|
{
|
|
//TODO: Change firebase API Key to be dependent on what environment monitor has been set for.
|
|
public static string ActiveShopId = Properties.Settings.Default.LastSelectedShop;
|
|
public static string ShopRegion = "";
|
|
public static dynamic CiecaOpCodes;
|
|
|
|
#if DEBUG
|
|
public static string graphQlEndpoint = "https://bodyshop-dev-db.herokuapp.com/v1/graphql";
|
|
public static string FirebaseAPIKey = "AIzaSyDPLT8GiDHDR1R4nI66Qi0BY1aYviDPioc";
|
|
|
|
#else
|
|
public static string graphQlEndpoint = "https://db.imex.online/v1/graphql";
|
|
public static string FirebaseAPIKey = "AIzaSyDSezy-jGJreo7ulgpLdlpOwAOrgcaEkhU";
|
|
#endif
|
|
}
|
|
}
|