Update comments for models (#913)

This commit is contained in:
Stef Heyenrath
2023-03-24 09:20:23 +01:00
committed by GitHub
parent 651486f718
commit 090989ea7f
2 changed files with 5 additions and 5 deletions

View File

@@ -19,12 +19,12 @@ public class CookieModel
public IList<MatcherModel>? Matchers { get; set; }
/// <summary>
/// Gets or sets the ignore case.
/// Gets or sets the ignore case for the Cookie Name.
/// </summary>
public bool? IgnoreCase { get; set; }
/// <summary>
/// Reject on match.
/// Gets or sets the Reject on match for the Cookie Name.
/// </summary>
public bool? RejectOnMatch { get; set; }