mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
Fixed failing tests
This commit is contained in:
@@ -10,32 +10,32 @@ namespace Octokit
|
||||
/// <summary>
|
||||
/// The gist comment id.
|
||||
/// </summary>
|
||||
public int Id { get; set; }
|
||||
public int Id { get; protected set; }
|
||||
|
||||
/// <summary>
|
||||
/// The URL for this gist comment.
|
||||
/// </summary>
|
||||
public Uri Url { get; set; }
|
||||
public Uri Url { get; protected set; }
|
||||
|
||||
/// <summary>
|
||||
/// The body of this gist comment.
|
||||
/// </summary>
|
||||
public string Body { get; set; }
|
||||
/// </summary>t
|
||||
public string Body { get; protected set; }
|
||||
|
||||
/// <summary>
|
||||
/// The user that created this gist comment.
|
||||
/// </summary>
|
||||
public User User { get; set; }
|
||||
public User User { get; protected set; }
|
||||
|
||||
/// <summary>
|
||||
/// The date this comment was created.
|
||||
/// </summary>
|
||||
public DateTimeOffset CreatedAt { get; set; }
|
||||
public DateTimeOffset CreatedAt { get; protected set; }
|
||||
|
||||
/// <summary>
|
||||
/// The date this comment was last updated.
|
||||
/// </summary>
|
||||
public DateTimeOffset? UpdatedAt { get; set; }
|
||||
public DateTimeOffset? UpdatedAt { get; protected set; }
|
||||
|
||||
internal string DebuggerDisplay
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user