10 lines
171 B
C#
10 lines
171 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Sep.Git.Tfs.Core
|
|
{
|
|
public interface IGitRepository : IGitHelpers
|
|
{
|
|
IList<string> ReadAllRemotes();
|
|
}
|
|
}
|