- added support for content APIs

This commit is contained in:
Woland2k
2014-12-19 15:14:52 -08:00
committed by Haacked
parent 740310560b
commit 50f19975aa
6 changed files with 73 additions and 1 deletions

View File

@@ -0,0 +1,33 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Octokit.Models.Request
{
public class DeleteFileRequest
{
public string Message { get; set; }
public string Branch { get; set; }
public Committer Committer { get; set; }
public string Sha { get; set; }
}
public class CreateFileRequest
{
public string Message { get; set; }
public string Content { get; set; }
public string Branch { get; set; }
public Committer Committer { get; set; }
}
public class UpdateFileRequest
{
public string Message { get; set; }
public string Content { get; set; }
public string Branch { get; set; }
public Committer Committer { get; set; }
public string Sha { get; set; }
}
}