Files
git-tfs/GitTfs/Core/IGitRepository.cs
T
2009-07-02 16:37:30 -04:00

10 lines
171 B
C#

using System.Collections.Generic;
namespace Sep.Git.Tfs.Core
{
public interface IGitRepository : IGitHelpers
{
IList<string> ReadAllRemotes();
}
}