mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-27 08:32:04 +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; }
|
|
}
|
|
}
|