Complete Gist API

This commit is contained in:
Robert Mills
2013-12-02 22:44:28 -05:00
committed by Marius Ungureanu
parent c82498a439
commit 91db7e59e9
9 changed files with 566 additions and 2 deletions
+23
View File
@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using Octokit.Internal;
namespace Octokit
{
public class GistUpdate
{
public GistUpdate()
{
Files = new Dictionary<string, GistFileUpdate>();
}
public string Description { get; set; }
public IDictionary<string, GistFileUpdate> Files { get; private set; }
}
public class GistFileUpdate
{
public string NewFileName { get; set; }
public string Content { get; set; }
}
}