11 lines
226 B
C#
11 lines
226 B
C#
using System.Linq;
|
|
using System.Collections.Generic;
|
|
using Sep.Git.Tfs.Core.TfsInterop;
|
|
|
|
namespace Sep.Git.Tfs.Core
|
|
{
|
|
public interface IBranchTreeVisitor
|
|
{
|
|
void Visit(BranchTree childBranch, int level);
|
|
}
|
|
} |