Summary

Class:WireMock.Admin.Mappings.MatcherModel
Assembly:WireMock.Net
File(s):C:\Users\StefHeyenrath\Documents\GitHub\WireMock.Net\src\WireMock.Net\Admin\Mappings\MatcherModel.cs
Covered lines:5
Uncovered lines:0
Coverable lines:5
Total lines:33
Line coverage:100%

File(s)

C:\Users\StefHeyenrath\Documents\GitHub\WireMock.Net\src\WireMock.Net\Admin\Mappings\MatcherModel.cs

#LineLine coverage
 1namespace WireMock.Admin.Mappings
 2{
 3    /// <summary>
 4    /// MatcherModel
 5    /// </summary>
 6    public class MatcherModel
 7    {
 8        /// <summary>
 9        /// Gets or sets the name.
 10        /// </summary>
 5711        public string Name { get; set; }
 12
 13        /// <summary>
 14        /// Gets or sets the pattern. Can be a string (default) or an object;
 15        /// </summary>
 4816        public object Pattern { get; set; }
 17
 18        /// <summary>
 19        /// Gets or sets the patterns. Can be array of strings (default) or an array of objects;
 20        /// </summary>
 4321        public object[] Patterns { get; set; }
 22
 23        /// <summary>
 24        /// Gets or sets the ignore case.
 25        /// </summary>
 1826        public bool? IgnoreCase { get; set; }
 27
 28        /// <summary>
 29        /// Reject on match.
 30        /// </summary>
 3131        public bool? RejectOnMatch { get; set; }
 32    }
 33}