From 090989ea7f7a645c9c7fb61b1c1f99ccb8dddb42 Mon Sep 17 00:00:00 2001 From: Stef Heyenrath Date: Fri, 24 Mar 2023 09:20:23 +0100 Subject: [PATCH] Update comments for models (#913) --- src/WireMock.Net.Abstractions/Admin/Mappings/CookieModel.cs | 4 ++-- src/WireMock.Net.Abstractions/Admin/Mappings/HeaderModel.cs | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/WireMock.Net.Abstractions/Admin/Mappings/CookieModel.cs b/src/WireMock.Net.Abstractions/Admin/Mappings/CookieModel.cs index e38c60f1..c48051eb 100644 --- a/src/WireMock.Net.Abstractions/Admin/Mappings/CookieModel.cs +++ b/src/WireMock.Net.Abstractions/Admin/Mappings/CookieModel.cs @@ -19,12 +19,12 @@ public class CookieModel public IList? Matchers { get; set; } /// - /// Gets or sets the ignore case. + /// Gets or sets the ignore case for the Cookie Name. /// public bool? IgnoreCase { get; set; } /// - /// Reject on match. + /// Gets or sets the Reject on match for the Cookie Name. /// public bool? RejectOnMatch { get; set; } diff --git a/src/WireMock.Net.Abstractions/Admin/Mappings/HeaderModel.cs b/src/WireMock.Net.Abstractions/Admin/Mappings/HeaderModel.cs index ea8882c4..3a0fbf85 100644 --- a/src/WireMock.Net.Abstractions/Admin/Mappings/HeaderModel.cs +++ b/src/WireMock.Net.Abstractions/Admin/Mappings/HeaderModel.cs @@ -9,7 +9,7 @@ namespace WireMock.Admin.Mappings; public class HeaderModel { /// - /// Gets or sets the name. + /// Gets or sets the name (key). /// public string Name { get; set; } = null!; @@ -19,12 +19,12 @@ public class HeaderModel public IList? Matchers { get; set; } /// - /// Gets or sets the ignore case. + /// Gets or sets the ignore case for the Header Key. /// public bool? IgnoreCase { get; set; } /// - /// Reject on match. + /// Gets or sets the Reject on match for the Header Key. /// public bool? RejectOnMatch { get; set; }