mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-17 23:14:23 +01:00
15 lines
308 B
C#
15 lines
308 B
C#
// Copyright © WireMock.Net
|
|
|
|
namespace WireMock.Admin.Scenarios;
|
|
|
|
/// <summary>
|
|
/// ScenarioStateModel
|
|
/// </summary>
|
|
[FluentBuilder.AutoGenerateBuilder]
|
|
public class ScenarioStateUpdateModel
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the NextState.
|
|
/// </summary>
|
|
public string? State { get; set; }
|
|
} |