mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-07 04:16:51 +00:00
13 lines
223 B
C#
13 lines
223 B
C#
namespace Octokit
|
|
{
|
|
public class SearchIndexTarget
|
|
{
|
|
public SearchIndexTarget(string target)
|
|
{
|
|
Target = target;
|
|
}
|
|
|
|
public string Target { get; protected set; }
|
|
}
|
|
}
|