Files
WireMock.Net-wiremock/src/WireMock.Net/Admin/Mappings/BodyModel.cs
Stef Heyenrath a3c853b4ad Fix #110
2018-03-20 21:06:58 +01:00

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; }
}
}