Files
WireMock.Net-wiremock/src/WireMock.Net/Admin/Mappings/BodyModel.cs
Stef Heyenrath d1aa517f99 UrlModel + Funcs
2017-02-03 13:54:19 +01:00

32 lines
734 B
C#

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