mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-24 17:55:01 +01:00
* refactor * rename api * -preview-01 * logger * move * RandomDataGenerator.Net * . * ISettings * renames... * refactor CommandlineParser logic * remove standalone * Remove Interfaces * Update tests * WireMock.Net.StandAlone * . * fix * . * _settings * Admin * WireMock.Net.Abstractions * fix build * rename WireMockServer * fix compile errors
18 lines
406 B
C#
18 lines
406 B
C#
namespace WireMock.Admin.Mappings
|
|
{
|
|
/// <summary>
|
|
/// Body Model
|
|
/// </summary>
|
|
public class BodyModel
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the matcher.
|
|
/// </summary>
|
|
public MatcherModel Matcher { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the matchers.
|
|
/// </summary>
|
|
public MatcherModel[] Matchers { get; set; }
|
|
}
|
|
} |