mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-09 21:09:51 +00:00
This commit is contained in:
committed by
Ryan Gribble
parent
5e751a6c38
commit
47c38bfd8e
@@ -0,0 +1,17 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace Octokit
|
||||
{
|
||||
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
||||
public class CreateEventPayload : ActivityPayload
|
||||
{
|
||||
public string Ref { get; protected set; }
|
||||
|
||||
public StringEnum<RefType> RefType { get; protected set; }
|
||||
|
||||
public string MasterBranch { get; protected set; }
|
||||
|
||||
public string Description { get; protected set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace Octokit
|
||||
{
|
||||
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
||||
public class DeleteEventPayload : ActivityPayload
|
||||
{
|
||||
public string Ref { get; protected set; }
|
||||
|
||||
public StringEnum<RefType> RefType { get; protected set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user