13 lines
233 B
C#
13 lines
233 B
C#
using System.Collections.Generic;
|
|
using CommandLine.OptParse;
|
|
using StructureMap;
|
|
|
|
namespace Sep.Git.Tfs
|
|
{
|
|
[PluginFamily]
|
|
public interface GitTfsCommand
|
|
{
|
|
IEnumerable<IOptionResults> ExtraOptions { get; }
|
|
}
|
|
}
|