namespace WireMock.Admin.Mappings;
///
/// Fault Model
///
[FluentBuilder.AutoGenerateBuilder]
public class FaultModel
{
///
/// Gets or sets the fault. Can be null, "", NONE, EMPTY_RESPONSE or MALFORMED_RESPONSE_CHUNK.
///
public string? Type { get; set; }
///
/// Gets or sets the fault percentage.
///
public double? Percentage { get; set; }
}