Ombi/Old/Ombi.Api.Interfaces/IAppveyorApi.cs
2017-05-16 08:31:44 +01:00

9 lines
No EOL
196 B
C#

using Ombi.Api.Models.Appveyor;
namespace Ombi.Api.Interfaces
{
public interface IAppveyorApi
{
AppveyorProjects GetProjectHistory(string branchName, int records = 10);
}
}