mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-18 16:27:42 +01:00
28 lines
776 B
C#
28 lines
776 B
C#
namespace WireMock
|
|
{
|
|
/// <summary>
|
|
/// The ScenarioState
|
|
/// </summary>
|
|
public class ScenarioState
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the Name (from the Scenario).
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the NextState.
|
|
/// </summary>
|
|
public string NextState { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether this <see cref="ScenarioState"/> is started.
|
|
/// </summary>
|
|
public bool Started { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether this <see cref="ScenarioState"/> is finished.
|
|
/// </summary>
|
|
public bool Finished { get; set; }
|
|
}
|
|
} |