Skip to content

Instantly share code, notes, and snippets.

@Kinani
Created March 10, 2017 13:20
Show Gist options
  • Save Kinani/90a9ad3e71cc78074aab7c27cd11f5d5 to your computer and use it in GitHub Desktop.
Save Kinani/90a9ad3e71cc78074aab7c27cd11f5d5 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace UltraReadingWeb.Common
{
public static class Constants
{
public static readonly string DatabaseId = "SensorsReadings";
public static readonly string CollectionId = "UltraSonicCollection";
public static readonly string EndPoint = "YOUR_END_POINT_HERE";
public static readonly string AuthKey = "YOUR_PRIMARY_KEY_HERE";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment