mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-24 15:19:02 +00:00
657e3429be
This reverts commit 1d82735096.
23 lines
563 B
C#
23 lines
563 B
C#
using System;
|
|
|
|
namespace Octokit
|
|
{
|
|
/// <summary>
|
|
/// Represents the data and name parsed from the Ssh key.
|
|
/// </summary>
|
|
[Obsolete("This class will be removed in a future release.")]
|
|
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; }
|
|
}
|
|
} |