using System.Collections.Generic; using System.Threading.Tasks; using Ombi.Api.Notifications.Models; namespace Ombi.Api.Notifications { public interface IOneSignalApi { Task PushNotification(List playerIds, string message); } }