13 lines
205 B
C#
13 lines
205 B
C#
using System.Collections.Generic;
|
|
using NDesk.Options;
|
|
using StructureMap;
|
|
|
|
namespace Sep.Git.Tfs
|
|
{
|
|
[PluginFamily]
|
|
public interface GitTfsCommand
|
|
{
|
|
OptionSet OptionSet { get; }
|
|
}
|
|
}
|