You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Api.GroupMe/IGroupMeApi.cs

13 lines
397 B

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);
}
}