mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-01 18:35:35 +00:00
Implementing the rest of the Notifications API
This commit is contained in:
committed by
Brendan Forster
parent
45e48e26f7
commit
f45fc8e3ff
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user