mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-28 17:05:57 +00:00
12 lines
267 B
C#
12 lines
267 B
C#
using System.Diagnostics;
|
|
|
|
namespace Octokit
|
|
{
|
|
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
|
public class IssueEventPayload : ActivityPayload
|
|
{
|
|
public string Action { get; protected set; }
|
|
public Issue Issue { get; protected set; }
|
|
}
|
|
}
|