mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-07-07 05:38:16 +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;}
|
|
}
|
|
} |