mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-17 23:03:46 +01:00
16 lines
325 B
C#
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; }
|
|
}
|
|
} |