Files
WireMock.Net/src/WireMock.Org.Abstractions/Scenarios.cs
Stef Heyenrath 54edf0bebc Add link to TIOBE Index on main page + fix issues (#1137)
* Add TIOBE + include SonarAnalyzer.CSharp

* .

* cp

* Copyright © WireMock.Net

* more fixes

* fix

* xpath

* if (Matchers == null || !Matchers.Any())

* if (Matchers != null)

* ?

* .

* .
2024-07-18 18:06:04 +02:00

27 lines
622 B
C#

// Copyright © WireMock.Net
namespace WireMock.Org.Abstractions
{
public class Scenarios
{
/// <summary>
/// The scenario ID
/// </summary>
public string Id { get; set; }
/// <summary>
/// The scenario name
/// </summary>
public string Name { get; set; }
/// <summary>
/// All the states this scenario can be in
/// </summary>
public string[] PossibleStates { get; set; }
/// <summary>
/// The current state of this scenario
/// </summary>
public string State { get; set; }
}
}