// Copyright © WireMock.Net
namespace WireMock.Admin.Settings;
///
/// Defines an old path param and a new path param to be replaced when proxying.
///
[FluentBuilder.AutoGenerateBuilder]
public class ProxyUrlReplaceSettingsModel
{
///
/// 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 ignore when replacing.
///
public bool IgnoreCase { get; set; }
}