Skip to content

Instantly share code, notes, and snippets.

View serbrech's full-sized avatar
🤙
Working from home

Stéphane Erbrech serbrech

🤙
Working from home
View GitHub Profile
public interface IIssueDataFetcher
{
void Fetch(Action<IssueData> callback);
IIssueDataFetcher WithId(int id);
IIssueDataFetcher IncludeContainers();
IIssueDataFetcher IncludeContainerStatuses();
IIssueDataFetcher IncludeContainerCategories();
IIssueDataFetcher IncludeAll();
}