18 lines
581 B
C#
18 lines
581 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BodyshopUploader.Utils
|
|
{
|
|
public static class AppMetaData
|
|
{
|
|
//TODO: Change firebase API Key to be dependent on what environment monitor has been set for.
|
|
public static string FirebaseAPIKey_DEV = "AIzaSyDV9MsSHZmpLtjoaTK_ObvjFaJ-nMSd2KA";
|
|
public static string ActiveShopId = Properties.Settings.Default.LastSelectedShop;
|
|
public static string ShopRegion = "";
|
|
public static dynamic CiecaOpCodes;
|
|
}
|
|
}
|