namespace WireMock
{
///
/// The ScenarioState
///
public class ScenarioState
{
///
/// Gets or sets the Name (from the Scenario).
///
public string Name { get; set; }
///
/// Gets or sets the NextState.
///
public string NextState { get; set; }
///
/// Gets or sets a value indicating whether this is started.
///
public bool Started { get; set; }
///
/// Gets or sets a value indicating whether this is finished.
///
public bool Finished { get; set; }
}
}