mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-21 08:39:00 +01:00
11 lines
345 B
C#
11 lines
345 B
C#
namespace WireMock.Constants;
|
|
|
|
internal static class WireMockConstants
|
|
{
|
|
public const int AdminPriority = int.MinValue;
|
|
public const int MinPriority = -1_000_000;
|
|
public const int ProxyPriority = -2_000_000;
|
|
|
|
public const string ContentTypeJson = "application/json";
|
|
public const string ContentTypeTextPlain = "text/plain";
|
|
} |