WebHook - Transform Url (#824)

* WebHook - Url

* .
This commit is contained in:
Stef Heyenrath
2022-10-15 08:55:05 +02:00
committed by GitHub
parent 55afc8041f
commit 36037627bc
6 changed files with 231 additions and 178 deletions

View File

@@ -0,0 +1,13 @@
using System.Diagnostics.CodeAnalysis;
namespace WireMock.Transformers;
[SuppressMessage("ReSharper", "InconsistentNaming")]
internal struct TransformModel
{
public IMapping mapping { get; set; }
public IRequestMessage request { get; set; }
public IResponseMessage? response { get; set; }
}