Add Repository Deploy Keys client

This commit is contained in:
Henrik Andersson
2014-06-14 18:22:21 +10:00
parent ee062e0c30
commit e28f3ec3db
11 changed files with 213 additions and 3 deletions
+14
View File
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Octokit
{
public class NewDeployKey
{
public string Title { get; set; }
public string Key { get; set; }
}
}