mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-18 23:44:43 +01:00
34 lines
959 B
C#
34 lines
959 B
C#
namespace WireMock.Admin.Scenarios
|
|
{
|
|
/// <summary>
|
|
/// ScenarioStateModel
|
|
/// </summary>
|
|
[FluentBuilder.AutoGenerateBuilder]
|
|
public class ScenarioStateModel
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the name.
|
|
/// </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="ScenarioStateModel"/> is started.
|
|
/// </summary>
|
|
public bool Started { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether this <see cref="ScenarioStateModel"/> is finished.
|
|
/// </summary>
|
|
public bool Finished { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the state counter.
|
|
/// </summary>
|
|
public int Counter { get; set; }
|
|
}
|
|
} |