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