using System.Collections.Generic; using System.Threading.Tasks; namespace Octokit { public interface ICodespacesClient { Task GetAll(); Task GetForRepository(string owner, string repo); Task Get(string codespaceName); Task Start(string codespaceName); Task Stop(string codespaceName); } }