Moved PublicKey into correct folder

This commit is contained in:
Kristian Hellang
2015-01-06 00:10:28 +01:00
parent 1fabaf4cc5
commit 535bad2dac
7 changed files with 10 additions and 10 deletions
+31
View File
@@ -0,0 +1,31 @@
using System;
using System.Diagnostics;
using System.Globalization;
namespace Octokit
{
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class PublicKey
{
public int Id { get; set; }
public string Key { get; set; }
/// <remarks>
/// Only visible for the current user, or with the correct OAuth scope
/// </remarks>
public string Url { get; set; }
/// <remarks>
/// Only visible for the current user, or with the correct OAuth scope
/// </remarks>
public string Title { get; set; }
internal string DebuggerDisplay
{
get
{
return String.Format(CultureInfo.InvariantCulture, "ID: {0} Key: {1}", Id, Key);
}
}
}
}