Add missing xml comments

This commit is contained in:
Kyle Nunery
2013-11-03 00:23:19 -05:00
parent 097ed6bee8
commit ea25d99676
3 changed files with 44 additions and 6 deletions
+6 -3
View File
@@ -9,20 +9,23 @@ namespace Octokit
/// </summary>
public int Id { get; set; }
/// <summary>
/// The URL for this event.
/// </summary>
public Uri Url { get; set; }
/// <summary>
/// Always the User that generated the event
/// Always the User that generated the event.
/// </summary>
public Actor Actor { get; set; }
/// <summary>
/// Identifies the actual type of Event that occurred
/// Identifies the actual type of Event that occurred.
/// </summary>
public EventInfoState InfoState { get; set; }
/// <summary>
/// The String SHA of a commit that referenced this Issue
/// The String SHA of a commit that referenced this Issue.
/// </summary>
public string CommitId { get; set; }