mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
14 lines
421 B
C#
14 lines
421 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Octokit
|
|
{
|
|
public interface ICodespacesClient
|
|
{
|
|
Task<CodespacesCollection> GetAll();
|
|
Task<CodespacesCollection> GetForRepository(string owner, string repo);
|
|
Task<Codespace> Get(string codespaceName);
|
|
Task<Codespace> Start(string codespaceName);
|
|
Task<Codespace> Stop(string codespaceName);
|
|
}
|
|
} |