mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-05-01 04:34:18 +02:00
12 lines
255 B
C#
12 lines
255 B
C#
namespace WireMock.Org.Abstractions
|
|
{
|
|
public static class StatusConstants
|
|
{
|
|
public const string NeverStarted = "NeverStarted";
|
|
|
|
public const string Recording = "Recording";
|
|
|
|
public const string Stopped = "Stopped";
|
|
}
|
|
}
|