18 lines
378 B
C#
18 lines
378 B
C#
using Pilz.Extensions.Collections;
|
|
using System.Collections.Specialized;
|
|
using System.Web;
|
|
|
|
namespace Pilz.Net.Api;
|
|
|
|
public class ApiParameterCollection : Dictionary<string, object?>
|
|
{
|
|
public ApiParameterCollection()
|
|
{
|
|
}
|
|
|
|
public ApiParameterCollection(IDictionary<string, object?> source)
|
|
{
|
|
source.ForEach(kvp => Add(kvp.Key, kvp.Value));
|
|
}
|
|
}
|