mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-16 07:06:54 +01:00
18 lines
443 B
C#
18 lines
443 B
C#
namespace WireMock.Admin.Mappings;
|
|
|
|
/// <summary>
|
|
/// Fault Model
|
|
/// </summary>
|
|
[FluentBuilder.AutoGenerateBuilder]
|
|
public class FaultModel
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the fault. Can be null, "", NONE, EMPTY_RESPONSE or MALFORMED_RESPONSE_CHUNK.
|
|
/// </summary>
|
|
public string? Type { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the fault percentage.
|
|
/// </summary>
|
|
public double? Percentage { get; set; }
|
|
} |