namespace WireMock.Admin.Mappings;
///
/// PathModel
///
[FluentBuilder.AutoGenerateBuilder]
public class PathModel
{
///
/// Gets or sets the matchers.
///
public MatcherModel[]? Matchers { get; set; }
///
/// The Operator to use when matchers are defined. [Optional]
/// - null = Same as "or".
/// - "or" = Only one pattern should match.
/// - "and" = All patterns should match.
/// - "average" = The average value from all patterns.
///
public string? MatchOperator { get; set; }
}