using System.Collections.Generic;
namespace WireMock.Admin
{
///
/// RequestModel
///
public class RequestModel
{
///
/// Gets or sets the URL.
///
///
/// The URL.
///
public UrlModel Url { get; set; }
///
/// The verbs
///
public string[] Verbs { get; set; }
///
/// Gets or sets the Headers.
///
///
/// The Headers.
///
public IList Headers { get; set; }
///
/// Gets or sets the Cookies.
///
///
/// The Cookies.
///
public IList Cookies { get; set; }
///
/// Gets or sets the Params.
///
///
/// The Headers.
///
public IList Params { get; set; }
///
/// Gets or sets the body.
///
///
/// The body.
///
public BodyModel Body { get; set; }
}
}