mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-30 05:41:46 +02:00
13 lines
417 B
C#
13 lines
417 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";
|
|
|
|
public const string NoMatchingFound = "No matching mapping found";
|
|
} |