mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-08 04:40:54 +00:00
17 lines
418 B
C#
17 lines
418 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Octokit.Models.Response.ActivityPayloads
|
|
{
|
|
public class PushEventPayload : ActivityPayload
|
|
{
|
|
public string Head { get; set; }
|
|
public string Ref { get; set; }
|
|
public int Size { get; set; }
|
|
public IReadOnlyList<Commit> Commits { get; set; }
|
|
}
|
|
}
|