mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-05 03:30:34 +00:00
11 lines
308 B
C#
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);
|
|
}
|
|
} |