add openhack files

This commit is contained in:
Ryan Peters
2022-11-03 16:41:13 -04:00
commit b2c9f7e29f
920 changed files with 118861 additions and 0 deletions

View File

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace TripViewer.Utility
{
public class TripViewerConfiguration
{
public string BING_MAPS_KEY { get; set; }
public string USER_ROOT_URL { get; set; }
public string USER_JAVA_ROOT_URL { get; set; }
public string TRIPS_ROOT_URL { get; set; }
public string POI_ROOT_URL { get; set; }
public string STAGING_USER_ROOT_URL { get; set; }
public string STAGING_USER_JAVA_ROOT_URL { get; set; }
public string STAGING_TRIPS_ROOT_URL { get; set; }
public string STAGING_POI_ROOT_URL { get; set; }
}
}