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; }