This repository has been archived on 2022-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
DevOpsOpenHack/support/tripviewer/web/Utility/TripViewerConfiguration.cs
2022-11-03 16:41:13 -04:00

21 lines
679 B
C#

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; }
}
}