Files
octokit.net/Octokit/Clients/ICodespacesClient.cs
2023-06-16 12:26:39 -05:00

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);
}
}