This commit is contained in:
Jamie 2018-02-01 16:31:49 +00:00
parent b0d229975b
commit c370909619
13 changed files with 338 additions and 3 deletions

View file

@ -0,0 +1,11 @@
using System.Collections.Generic;
using System.Threading.Tasks;
using Ombi.Api.Notifications.Models;
namespace Ombi.Api.Notifications
{
public interface IOneSignalApi
{
Task<OneSignalNotificationResponse> PushNotification(List<string> playerIds, string message);
}
}