namespace Octokit
{
///
/// Provides a property for the Last recorded API information
///
public interface IApiInfoProvider
{
///
/// Gets the latest API Info - this will be null if no API calls have been made
///
/// representing the information returned as part of an Api call
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate"), System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate")]
ApiInfo GetLastApiInfo();
}
}