Add IgnoreCase option to ProxyUrlReplaceSettings (#925)

* Add IgnoreCase option to ProxyUrlReplaceSettings

* fix
This commit is contained in:
Stef Heyenrath
2023-04-23 11:56:08 +02:00
committed by GitHub
parent 9ef8bd0b7b
commit 0a2763c06e
4 changed files with 36 additions and 1 deletions

View File

@@ -15,4 +15,9 @@ public class ProxyUrlReplaceSettingsModel
/// 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; }
}