mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-23 09:18:55 +02:00
Update WireMock.Org.Abstractions and WireMock.Org.RestClient (#765)
* Update WireMock.Org.Abstractions and WireMock.Org.RestClient * . * rename
This commit is contained in:
25
src/WireMock.Org.Abstractions/Scenarios.cs
Normal file
25
src/WireMock.Org.Abstractions/Scenarios.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user