mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-23 18:54:51 +01:00
* Add TIOBE + include SonarAnalyzer.CSharp * . * cp * Copyright © WireMock.Net * more fixes * fix * xpath * if (Matchers == null || !Matchers.Any()) * if (Matchers != null) * ? * . * .
34 lines
838 B
C#
34 lines
838 B
C#
// Copyright © WireMock.Net
|
|
|
|
namespace WireMock;
|
|
|
|
/// <summary>
|
|
/// The ScenarioState
|
|
/// </summary>
|
|
public class ScenarioState
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the Name (from the Scenario).
|
|
/// </summary>
|
|
public string Name { get; set; } = null!;
|
|
|
|
/// <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; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the state counter.
|
|
/// </summary>
|
|
public int Counter { get; set; }
|
|
} |