Files
octokit.net/Octokit/Models/Request/RepositoryIssueRequest.cs
2016-03-29 17:41:45 +07:00

36 lines
1.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System.Diagnostics;
namespace Octokit
{
/// <summary>
/// Used to request and filter a list of repository issues.
/// </summary>
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class RepositoryIssueRequest : IssueRequest
{
/// <summary>
/// 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.
/// </summary>
public string Milestone { get; set; }
/// <summary>
/// Filter on the user assigned for the request
/// </summary>
/// <remarks>
/// Specify "none" for issues with no assigned user
/// </remarks>
public string Assignee { get; set; }
/// <summary>
/// The user that created the issue
/// </summary>
public string Creator { get; set; }
/// <summary>
/// A user thats mentioned in the issue
/// </summary>
public string Mentioned { get; set; }
}
}