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

21 lines
679 B
C#
Raw Permalink Normal View History

2022-11-03 20:41:13 +00:00
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; }
}
}