Get commit activity for the last year

This commit is contained in:
Amy Palamountain
2014-02-01 13:56:07 +13:00
parent 82fcea6602
commit 815da312e8
7 changed files with 79 additions and 0 deletions
@@ -0,0 +1,14 @@
using System.Collections.Generic;
namespace Octokit
{
public class WeeklyCommitActivity
{
//The days array is a group of commits per day, starting on Sunday.
public IEnumerable<int> Days { get; set; }
public int Total { get; set; }
public int Week { get; set; }
}
}