Files
2016-02-27 00:43:51 +10:00

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; }
}
}