mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
* Add support for /mets/public_keys/<keyType> * "files.insertFinalNewline": false * revert and make setttings.json change csharp only * formatting * remove final new line --------- Co-authored-by: Nick Floyd <139819+nickfloyd@users.noreply.github.com>
25 lines
616 B
C#
25 lines
616 B
C#
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Globalization;
|
|
|
|
namespace Octokit
|
|
{
|
|
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
|
public class MetaPublicKeys
|
|
{
|
|
public MetaPublicKeys() { }
|
|
|
|
public MetaPublicKeys(IReadOnlyList<MetaPublicKey> publicKeys)
|
|
{
|
|
PublicKeys = publicKeys;
|
|
}
|
|
|
|
public IReadOnlyList<MetaPublicKey> PublicKeys { get; protected set; }
|
|
|
|
internal string DebuggerDisplay
|
|
{
|
|
get { return string.Format(CultureInfo.InvariantCulture, "PublicKeys: {0}", PublicKeys.Count); }
|
|
}
|
|
}
|
|
}
|