mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-20 16:01:39 +02:00
GET "/__admin/mappings"
This commit is contained in:
26
src/WireMock/Admin/ParamModel.cs
Normal file
26
src/WireMock/Admin/ParamModel.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace WireMock.Admin
|
||||
{
|
||||
/// <summary>
|
||||
/// Param Model
|
||||
/// </summary>
|
||||
public class ParamModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the name.
|
||||
/// </summary>
|
||||
/// <value>
|
||||
/// The name.
|
||||
/// </value>
|
||||
public string Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the values.
|
||||
/// </summary>
|
||||
/// <value>
|
||||
/// The values.
|
||||
/// </value>
|
||||
public IList<string> Values { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user