mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-17 23:03:46 +01:00
* refactor * rename api * -preview-01 * logger * move * RandomDataGenerator.Net * . * ISettings * renames... * refactor CommandlineParser logic * remove standalone * Remove Interfaces * Update tests * WireMock.Net.StandAlone * . * fix * . * _settings * Admin * WireMock.Net.Abstractions * fix build * rename WireMockServer * fix compile errors
28 lines
788 B
C#
28 lines
788 B
C#
namespace WireMock.Admin.Scenarios
|
|
{
|
|
/// <summary>
|
|
/// ScenarioStateModel
|
|
/// </summary>
|
|
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; }
|
|
}
|
|
} |