Files
WireMock.Net-wiremock/src/WireMock/Admin/BodyModel.cs
2017-01-24 22:06:25 +01:00

16 lines
325 B
C#

namespace WireMock.Admin
{
/// <summary>
/// Body Model
/// </summary>
public class BodyModel
{
/// <summary>
/// Gets or sets the matcher.
/// </summary>
/// <value>
/// The matcher.
/// </value>
public MatcherModel Matcher { get; set; }
}
}