mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-09-17 02:25:34 +08:00
14 lines
412 B
C#
14 lines
412 B
C#
namespace Ocelot.Library.Infrastructure.BaseUrlRepository
|
|
{
|
|
public class BaseUrlMap
|
|
{
|
|
public BaseUrlMap(string downstreamBaseUrl, string upstreamBaseUrl)
|
|
{
|
|
DownstreamBaseUrl = downstreamBaseUrl;
|
|
UpstreamBaseUrl = upstreamBaseUrl;
|
|
}
|
|
|
|
public string DownstreamBaseUrl {get;private set;}
|
|
public string UpstreamBaseUrl {get;private set;}
|
|
}
|
|
} |