Taylohtio/AlertManager/SPSolutions.SharePoint.Aler.../SPSolutions.SharePoint/SPSolutions.SharePoint.Admi.../CommandLineParameterCollect...

13 lines
292 B
C#

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);
}
}
}