10 lines
155 B
C#
10 lines
155 B
C#
using System.IO;
|
|
|
|
namespace Sep.Git.Tfs.Core
|
|
{
|
|
public interface ITreeEntry
|
|
{
|
|
string FullName { get; }
|
|
Stream OpenRead();
|
|
}
|
|
} |