Fixed HasGetterOnlyProperties test

This commit is contained in:
Kristian Hellang
2015-01-06 08:33:09 +01:00
parent 574202a9ea
commit 15f0d04445
9 changed files with 53 additions and 59 deletions
+5 -5
View File
@@ -10,16 +10,16 @@ namespace Octokit
public class WeeklyHash
{
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "W")]
public long W { get; set; }
public long W { get; protected set; }
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "A")]
public int A { get; set; }
public int A { get; protected set; }
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "D")]
public int D { get; set; }
public int D { get; protected set; }
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "C")]
public int C { get; set; }
public int C { get; protected set; }
public DateTimeOffset Week
{
@@ -50,4 +50,4 @@ namespace Octokit
}
}
}
}
}