Files
bodyshop-uploader/BodyshopUploader/Utils/AppMetaData.cs
2020-05-22 09:05:55 -07:00

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 = "AIzaSyDPLT8GiDHDR1R4nI66Qi0BY1aYviDPioc";
public static string ActiveShopId = Properties.Settings.Default.LastSelectedShop;
public static string ShopRegion = "";
public static dynamic CiecaOpCodes;
}
}