mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-07 04:16:51 +00:00
Complete Gist API
This commit is contained in:
committed by
Marius Ungureanu
parent
c82498a439
commit
91db7e59e9
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using Octokit.Internal;
|
||||
|
||||
namespace Octokit
|
||||
{
|
||||
public class GistRequest : RequestParameters
|
||||
{
|
||||
public GistRequest(DateTimeOffset since)
|
||||
{
|
||||
Since = since;
|
||||
}
|
||||
|
||||
public DateTimeOffset Since { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user