// Copyright © WireMock.Net
namespace WireMock.Settings;
///
/// Defines an old path param and a new path param to be replaced when proxying.
///
public class ProxyUrlReplaceSettings
{
///
/// The old path value to be replaced by the new path value
///
public string OldValue { get; set; } = null!;
///
/// The new path value to replace the old value with
///
public string NewValue { get; set; } = null!;
///
/// Defines if the case should be ignored when replacing.
///
public bool IgnoreCase { get; set; }
}