|
using System;
|
|
using System.Collections.Generic;
|
|
namespace SPSolutions.SharePoint.Administration
|
|
{
|
|
public class CommandLineParameterCollection : Dictionary<string, CommandLineParameter>
|
|
{
|
|
public void Add(CommandLineParameter parameter)
|
|
{
|
|
base.Add(parameter.Name, parameter);
|
|
}
|
|
}
|
|
}
|