mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-19 13:45:12 +00:00
ObservableStats Client
This commit is contained in:
16
Octokit.Reactive/Clients/IObservableStatisticsClient.cs
Normal file
16
Octokit.Reactive/Clients/IObservableStatisticsClient.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Octokit.Reactive
|
||||
{
|
||||
public interface IObservableStatisticsClient
|
||||
{
|
||||
/// <summary>
|
||||
/// Returns a list of <see cref="Contributor"/> for the given repository
|
||||
/// </summary>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="repositoryName">The name of the repository</param>
|
||||
/// <returns>A list of <see cref="Contributor"/></returns>
|
||||
IObservable<IEnumerable<Contributor>> GetContributors(string owner, string repositoryName);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user