work on issues and imporving the api.

Also added the GroupMe Api project so we can later add this as another notification agent
This commit is contained in:
Jamie Rees 2019-05-31 14:54:51 +01:00
commit 189cfcaf05
28 changed files with 392 additions and 38 deletions

View file

@ -0,0 +1,13 @@
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);
}
}