mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-05-02 23:22:52 +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;}
|
|
}
|
|
} |