using System.Collections.Generic; using System.Threading.Tasks; using Website.Models.Git; namespace Website.Data { public interface IGitApi { Task> GetRepositories(string user); Task> GetBranches(string user, string repository); Task GetCommit(string user, string repository, string hash); } }