mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-15 14:53:37 +01: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";
|
|
}
|
|
}
|