Files
octokit.net/Octokit/Clients/IDeploymentsClient.cs
T
2014-01-10 15:11:02 -07:00

11 lines
308 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
namespace Octokit
{
public interface IDeploymentsClient
{
Task<IReadOnlyList<GitDeployment>> GetAll(string owner, string name);
Task<GitDeployment> Create(string owner, string name, NewDeployment newDeployment);
}
}