response enums can be camelcase as underscores are removed in the deserializer

This commit is contained in:
Ryan Gribble
2017-03-16 06:42:54 +10:00
parent 31bfc5c730
commit a936184cff
2 changed files with 3 additions and 5 deletions

View File

@@ -214,13 +214,11 @@ namespace Octokit
/// <summary>
/// A line comment was made.
/// </summary>
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Linecommented")]
Linecommented,
LineCommented,
/// <summary>
/// A commit comment was made.
/// </summary>
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Commitcommented")]
Commitcommented
CommitCommented
}
}