Ombi/src/Ombi.Api.GroupMe/IGroupMeApi.cs
Jamie Rees 189cfcaf05 work on issues and imporving the api.
Also added the GroupMe Api project so we can later add this as another notification agent
2019-05-31 14:54:51 +01:00

13 lines
No EOL
397 B
C#

using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Ombi.Api.GroupMe.Models;
namespace Ombi.Api.GroupMe
{
public interface IGroupMeApi
{
Task<GroupMeResponse<List<Groups>>> GetGroups(string token, CancellationToken cancellationToken);
Task<GroupMeResponse<SendResponse>> Send(string message, string token, int groupId);
}
}