Implementing the rest of the Notifications API

This commit is contained in:
Dillon Buchanan
2014-08-17 11:03:32 -04:00
committed by Brendan Forster
parent 45e48e26f7
commit f45fc8e3ff
20 changed files with 795 additions and 0 deletions
@@ -0,0 +1,20 @@
using System;
using System.Diagnostics;
using Octokit.Internal;
namespace Octokit
{
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class MarkAsReadRequest : RequestParameters
{
public MarkAsReadRequest()
{
LastReadAt = null;
}
/// <summary>
/// Describes the last point that notifications were checked. Anything updated since this time will not be updated.
/// </summary>
public DateTimeOffset? LastReadAt { get; set; }
}
}