mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-07 04:16:51 +00:00
Moved PublicKey into correct folder
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user