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