Organize classes better

Closes #94
This commit is contained in:
Haacked
2013-10-26 09:52:56 -07:00
parent 85145def8c
commit 61c4cdf002
64 changed files with 115 additions and 113 deletions
+25
View File
@@ -0,0 +1,25 @@
namespace Octokit
{
public class SshKey
{
/// <summary>
/// The system-wide unique Id for this user.
/// </summary>
public int Id { get; set; }
/// <summary>
/// The SSH Key
/// </summary>
public string Key { get; set; }
/// <summary>
/// The title of the SSH key
/// </summary>
public string Title { get; set; }
/// <summary>
/// The api URL for this organization.
/// </summary>
public string Url { get; set; }
}
}