using System.Diagnostics; namespace Octokit { /// /// Used to request and filter a list of repository issues. /// [DebuggerDisplay("{DebuggerDisplay,nq}")] public class RepositoryIssueRequest : IssueRequest { /// /// Identifies a filter for the milestone. Use "*" for issues with any milestone. /// Use the milestone number for a specific milestone. Use the value "none" for issues with any milestones. /// public string Milestone { get; set; } /// /// Filter on the user assigned for the request /// /// /// Specify "none" for issues with no assigned user /// public string Assignee { get; set; } /// /// The user that created the issue /// public string Creator { get; set; } /// /// A user that’s mentioned in the issue /// public string Mentioned { get; set; } } }