mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-21 00:50:24 +01:00
26 lines
545 B
C#
26 lines
545 B
C#
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; }
|
|
}
|
|
} |