mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-14 12:04:52 +00:00
36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
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 that’s mentioned in the issue
|
||
/// </summary>
|
||
public string Mentioned { get; set; }
|
||
}
|
||
}
|