From 422e7c9b5e567cec5c2f4c56542fa1663cad3697 Mon Sep 17 00:00:00 2001 From: Stef Heyenrath Date: Mon, 22 Jul 2024 21:35:19 +0200 Subject: [PATCH] Make properyt FromConfiguredStub nullable (#1142) --- src/WireMock.Org.Abstractions/MappingsResponse.cs | 2 +- src/WireMock.Org.Abstractions/Response.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/WireMock.Org.Abstractions/MappingsResponse.cs b/src/WireMock.Org.Abstractions/MappingsResponse.cs index d95b2dd1..e64fc4eb 100644 --- a/src/WireMock.Org.Abstractions/MappingsResponse.cs +++ b/src/WireMock.Org.Abstractions/MappingsResponse.cs @@ -62,7 +62,7 @@ namespace WireMock.Org.Abstractions /// /// Read-only flag indicating false if this was the default, unmatched response. Not present otherwise. /// - public bool FromConfiguredStub { get; set; } + public bool? FromConfiguredStub { get; set; } /// /// The base URL of the target to proxy matching requests to. diff --git a/src/WireMock.Org.Abstractions/Response.cs b/src/WireMock.Org.Abstractions/Response.cs index 7f835b33..f0dd9268 100644 --- a/src/WireMock.Org.Abstractions/Response.cs +++ b/src/WireMock.Org.Abstractions/Response.cs @@ -62,7 +62,7 @@ namespace WireMock.Org.Abstractions /// /// Read-only flag indicating false if this was the default, unmatched response. Not present otherwise. /// - public bool FromConfiguredStub { get; set; } + public bool? FromConfiguredStub { get; set; } /// /// The base URL of the target to proxy matching requests to.