mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-21 17:57:52 +01:00
23 lines
545 B
C#
23 lines
545 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 function.
|
|
///// </summary>
|
|
//public string Func { get; set; }
|
|
|
|
///// <summary>
|
|
///// Gets or sets the data function.
|
|
///// </summary>
|
|
//public string DataFunc { get; set; }
|
|
}
|
|
} |