mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-07 05:38:16 +00:00
12 lines
276 B
C#
12 lines
276 B
C#
namespace Octokit
|
|
{
|
|
public static class CredentialsExtensions
|
|
{
|
|
public static string GetToken(this Credentials credentials)
|
|
{
|
|
Ensure.ArgumentNotNull(credentials, "credentials");
|
|
|
|
return credentials.Password;
|
|
}
|
|
}
|
|
} |