Implement Enterprise Search Indexing Client and unit/integration tests

This commit is contained in:
Ryan Gribble
2016-02-03 00:39:09 +10:00
committed by Ryan Gribble
parent d7d79076bf
commit b50b2c737f
18 changed files with 646 additions and 4 deletions
@@ -0,0 +1,12 @@
namespace Octokit
{
public class SearchIndexTarget
{
public SearchIndexTarget(string target)
{
Target = target;
}
public string Target { get; protected set; }
}
}