mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-05 03:30:34 +00:00
Complete Gist API
This commit is contained in:
committed by
Marius Ungureanu
parent
c82498a439
commit
91db7e59e9
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user