using System.Diagnostics.CodeAnalysis; using System.Threading.Tasks; namespace Octokit { /// /// Abstraction for interacting with credentials /// public interface ICredentialStore { /// /// Retrieve the credentials from the underlying store /// /// A continuation containing credentials [SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate", Justification = "Nope")] Task GetCredentials(); } }