added support for filtering by creator

This commit is contained in:
Brendan Forster
2014-03-08 11:58:19 +11:00
parent f286d9d3c3
commit 33c3954599
2 changed files with 35 additions and 0 deletions
@@ -18,5 +18,13 @@ namespace Octokit
/// Specify "none" for issues with no assigned user
/// </remarks>
public string Assignee { get; set; }
/// <summary>
/// The user that created the issue
/// </summary>
/// <remarks>
/// Specify "none" for issues with no assigned user
/// </remarks>
public string Creator { get; set; }
}
}