mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-03 11:05:56 +00:00
@@ -0,0 +1,14 @@
|
||||
namespace Octokit
|
||||
{
|
||||
public class Notification
|
||||
{
|
||||
public string Id { get; set; } // NB: API currently returns this as string which is Weird
|
||||
public Repository Repository { get; set; }
|
||||
public NotificationInfo Subject { get; set; }
|
||||
public string Reason { get; set; }
|
||||
public bool Unread { get; set; }
|
||||
public string UpdatedAt { get; set; }
|
||||
public string LastReadAt { get; set; }
|
||||
public string Url { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user