mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-14 14:11:12 +01:00
25 lines
576 B
C#
25 lines
576 B
C#
using System.Collections.Generic;
|
|
|
|
namespace WireMock.Admin.Mappings
|
|
{
|
|
/// <summary>
|
|
/// Header Model
|
|
/// </summary>
|
|
public class HeaderModel
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the name.
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the matchers.
|
|
/// </summary>
|
|
public IList<MatcherModel> Matchers { get; set; }
|
|
|
|
///// <summary>
|
|
///// Gets or sets the functions.
|
|
///// </summary>
|
|
//public string[] Funcs { get; set; }
|
|
}
|
|
} |