Update WireMock.Org.Abstractions and WireMock.Org.RestClient (#765)

* Update WireMock.Org.Abstractions and WireMock.Org.RestClient

* .

* rename
This commit is contained in:
Stef Heyenrath
2022-07-08 11:02:18 +02:00
committed by GitHub
parent 4d0f96eabe
commit b1032c9dcd
42 changed files with 862 additions and 6736 deletions

View File

@@ -0,0 +1,25 @@
namespace WireMock.Org.Abstractions
{
public class Scenarios
{
/// <summary>
/// The scenario ID
/// </summary>
public string Id { get; set; }
/// <summary>
/// The scenario name
/// </summary>
public string Name { get; set; }
/// <summary>
/// All the states this scenario can be in
/// </summary>
public string[] PossibleStates { get; set; }
/// <summary>
/// The current state of this scenario
/// </summary>
public string State { get; set; }
}
}