mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-25 10:15:04 +01:00
* Add TIOBE + include SonarAnalyzer.CSharp * . * cp * Copyright © WireMock.Net * more fixes * fix * xpath * if (Matchers == null || !Matchers.Any()) * if (Matchers != null) * ? * . * .
25 lines
717 B
C#
25 lines
717 B
C#
// Copyright © WireMock.Net
|
|
|
|
namespace WireMock.Admin.Settings;
|
|
|
|
/// <summary>
|
|
/// Defines an old path param and a new path param to be replaced when proxying.
|
|
/// </summary>
|
|
[FluentBuilder.AutoGenerateBuilder]
|
|
public class ProxyUrlReplaceSettingsModel
|
|
{
|
|
/// <summary>
|
|
/// The old path value to be replaced by the new path value
|
|
/// </summary>
|
|
public string OldValue { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// The new path value to replace the old value with
|
|
/// </summary>
|
|
public string NewValue { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// Defines if the case should be ignore when replacing.
|
|
/// </summary>
|
|
public bool IgnoreCase { get; set; }
|
|
} |