Summary

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

File(s)

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

#LineLine coverage
 1using System;
 2
 3namespace WireMock.Admin.Mappings
 4{
 5    /// <summary>
 6    /// MappingModel
 7    /// </summary>
 8    public class MappingModel
 9    {
 10        /// <summary>
 11        /// Gets or sets the unique identifier.
 12        /// </summary>
 2513        public Guid? Guid { get; set; }
 14
 15        /// <summary>
 16        /// The unique title.
 17        /// </summary>
 2418        public string Title { get; set; }
 19
 20        /// <summary>
 21        /// The priority.
 22        /// </summary>
 3623        public int? Priority { get; set; }
 24
 25        /// <summary>
 26        /// The Scenario.
 27        /// </summary>
 1628        public string Scenario { get; set; }
 29
 30        /// <summary>
 31        /// Execution state condition for the current mapping.
 32        /// </summary>
 533        public string WhenStateIs { get; set; }
 34
 35        /// <summary>
 36        /// The next state which will be signaled after the current mapping execution.
 37        /// In case the value is null state will not be changed.
 38        /// </summary>
 539        public string SetStateTo { get; set; }
 40
 41        /// <summary>
 42        /// The request.
 43        /// </summary>
 4944        public RequestModel Request { get; set; }
 45
 46        /// <summary>
 47        /// The response.
 48        /// </summary>
 6949        public ResponseModel Response { get; set; }
 50    }
 51}