Make properyt FromConfiguredStub nullable (#1142)

This commit is contained in:
Stef Heyenrath
2024-07-22 21:35:19 +02:00
committed by GitHub
parent 6055b0df1a
commit 422e7c9b5e
2 changed files with 2 additions and 2 deletions

View File

@@ -62,7 +62,7 @@ namespace WireMock.Org.Abstractions
/// <summary>
/// Read-only flag indicating false if this was the default, unmatched response. Not present otherwise.
/// </summary>
public bool FromConfiguredStub { get; set; }
public bool? FromConfiguredStub { get; set; }
/// <summary>
/// The base URL of the target to proxy matching requests to.

View File

@@ -62,7 +62,7 @@ namespace WireMock.Org.Abstractions
/// <summary>
/// Read-only flag indicating false if this was the default, unmatched response. Not present otherwise.
/// </summary>
public bool FromConfiguredStub { get; set; }
public bool? FromConfiguredStub { get; set; }
/// <summary>
/// The base URL of the target to proxy matching requests to.