Summary

Class:WireMock.Admin.Mappings.MatcherModel
Assembly:WireMock.Net
File(s):C:\Users\azureuser\Documents\Github\WireMock.Net\src\WireMock.Net\Admin\Mappings\MatcherModel.cs
Covered lines:4
Uncovered lines:0
Coverable lines:4
Total lines:28
Line coverage:100%

File(s)

C:\Users\azureuser\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>
 3311        public string Name { get; set; }
 12
 13        /// <summary>
 14        /// Gets or sets the pattern.
 15        /// </summary>
 2716        public string Pattern { get; set; }
 17
 18        /// <summary>
 19        /// Gets or sets the patterns.
 20        /// </summary>
 2321        public string[] Patterns { get; set; }
 22
 23        /// <summary>
 24        /// Gets or sets the ignore case.
 25        /// </summary>
 1226        public bool? IgnoreCase { get; set; }
 27    }
 28}