mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-05 11:40:42 +00:00
@@ -0,0 +1,20 @@
|
||||
namespace Octokit
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents the data and name parsed from the Ssh key.
|
||||
/// </summary>
|
||||
public class SshKeyInfo
|
||||
{
|
||||
public SshKeyInfo(string data, string name)
|
||||
{
|
||||
Ensure.ArgumentNotNull(data, "data");
|
||||
Ensure.ArgumentNotNull(name, "name");
|
||||
|
||||
Data = data;
|
||||
Name = name;
|
||||
}
|
||||
|
||||
public string Data { get; private set; }
|
||||
public string Name { get; private set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user