mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-22 09:09:02 +01:00
55 lines
1.2 KiB
C#
55 lines
1.2 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace WireMock.Admin
|
|
{
|
|
/// <summary>
|
|
/// RequestModel
|
|
/// </summary>
|
|
public class RequestModel
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the URL.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The URL.
|
|
/// </value>
|
|
public UrlModel Url { get; set; }
|
|
|
|
/// <summary>
|
|
/// The verbs
|
|
/// </summary>
|
|
public string[] Verbs { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the Headers.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The Headers.
|
|
/// </value>
|
|
public IList<HeaderModel> Headers { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the Cookies.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The Cookies.
|
|
/// </value>
|
|
public IList<CookieModel> Cookies { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the Params.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The Headers.
|
|
/// </value>
|
|
public IList<ParamModel> Params { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the body.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The body.
|
|
/// </value>
|
|
public BodyModel Body { get; set; }
|
|
}
|
|
} |