namespace WireMock.Admin.Scenarios { /// /// ScenarioStateModel /// [FluentBuilder.AutoGenerateBuilder] public class ScenarioStateModel { /// /// Gets or sets the name. /// 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; } /// /// Gets or sets the state counter. /// public int Counter { get; set; } } }