mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-24 18:32:13 +01:00
* WithDescription * WithConsumer / WithProvider * x * . * . * . * . * fix * pact * nullable * ficx * . * fix
34 lines
957 B
C#
34 lines
957 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; }
|
|
}
|
|
} |