Ombi/src/Ombi.Api.Notifications/IOneSignalApi.cs
2018-08-13 00:49:02 +01:00

11 lines
No EOL
348 B
C#

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, bool isAdminNotification, int requestId, int requestType);
}
}