mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
Also added the GroupMe Api project so we can later add this as another notification agent
13 lines
No EOL
397 B
C#
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);
|
|
}
|
|
} |