13 lines
299 B
C#
13 lines
299 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
namespace SPSolutions.SharePoint.Administration
|
|
{
|
|
public class CommandLineOperationCollection : Dictionary<string, CommandLineOperation>
|
|
{
|
|
public void Add(CommandLineOperation operation)
|
|
{
|
|
base.Add(operation.CommandName, operation);
|
|
}
|
|
}
|
|
}
|